Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
1c7fb212
Unverified
Commit
1c7fb212
authored
Apr 01, 2020
by
Edward Thomson
Committed by
GitHub
Apr 01, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5466 from pks-t/pks/patch-modechange-with-rename
patch: correctly handle mode changes for renames
parents
85533f37
5f47cb48
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
3 deletions
+18
-3
src/diff_print.c
+3
-3
src/patch_parse.c
+1
-0
tests/patch/patch_common.h
+8
-0
tests/patch/print.c
+6
-0
No files found.
src/diff_print.c
View file @
1c7fb212
...
@@ -428,6 +428,9 @@ int git_diff_delta__format_file_header(
...
@@ -428,6 +428,9 @@ int git_diff_delta__format_file_header(
git_buf_printf
(
out
,
"diff --git %s %s
\n
"
,
git_buf_printf
(
out
,
"diff --git %s %s
\n
"
,
old_path
.
ptr
,
new_path
.
ptr
);
old_path
.
ptr
,
new_path
.
ptr
);
if
(
unchanged
&&
delta
->
old_file
.
mode
!=
delta
->
new_file
.
mode
)
diff_print_modes
(
out
,
delta
);
if
(
delta
->
status
==
GIT_DELTA_RENAMED
||
if
(
delta
->
status
==
GIT_DELTA_RENAMED
||
(
delta
->
status
==
GIT_DELTA_COPIED
&&
unchanged
))
{
(
delta
->
status
==
GIT_DELTA_COPIED
&&
unchanged
))
{
if
((
error
=
diff_delta_format_similarity_header
(
out
,
delta
))
<
0
)
if
((
error
=
diff_delta_format_similarity_header
(
out
,
delta
))
<
0
)
...
@@ -444,9 +447,6 @@ int git_diff_delta__format_file_header(
...
@@ -444,9 +447,6 @@ int git_diff_delta__format_file_header(
"--- %s
\n
+++ %s
\n
"
,
old_path
.
ptr
,
new_path
.
ptr
);
"--- %s
\n
+++ %s
\n
"
,
old_path
.
ptr
,
new_path
.
ptr
);
}
}
if
(
unchanged
&&
delta
->
old_file
.
mode
!=
delta
->
new_file
.
mode
)
diff_print_modes
(
out
,
delta
);
if
(
git_buf_oom
(
out
))
if
(
git_buf_oom
(
out
))
error
=
-
1
;
error
=
-
1
;
...
...
src/patch_parse.c
View file @
1c7fb212
...
@@ -411,6 +411,7 @@ static const parse_header_transition transitions[] = {
...
@@ -411,6 +411,7 @@ static const parse_header_transition transitions[] = {
{
"GIT binary patch"
,
STATE_INDEX
,
STATE_END
,
NULL
},
{
"GIT binary patch"
,
STATE_INDEX
,
STATE_END
,
NULL
},
{
"Binary files "
,
STATE_INDEX
,
STATE_END
,
NULL
},
{
"Binary files "
,
STATE_INDEX
,
STATE_END
,
NULL
},
{
"similarity index "
,
STATE_END
,
STATE_SIMILARITY
,
parse_header_similarity
},
{
"similarity index "
,
STATE_DIFF
,
STATE_SIMILARITY
,
parse_header_similarity
},
{
"similarity index "
,
STATE_DIFF
,
STATE_SIMILARITY
,
parse_header_similarity
},
{
"dissimilarity index "
,
STATE_DIFF
,
STATE_SIMILARITY
,
parse_header_dissimilarity
},
{
"dissimilarity index "
,
STATE_DIFF
,
STATE_SIMILARITY
,
parse_header_dissimilarity
},
{
"rename from "
,
STATE_SIMILARITY
,
STATE_RENAME
,
parse_header_renamefrom
},
{
"rename from "
,
STATE_SIMILARITY
,
STATE_RENAME
,
parse_header_renamefrom
},
...
...
tests/patch/patch_common.h
View file @
1c7fb212
...
@@ -579,6 +579,14 @@
...
@@ -579,6 +579,14 @@
"rename from file.txt\n" \
"rename from file.txt\n" \
"rename to newfile.txt\n"
"rename to newfile.txt\n"
#define PATCH_RENAME_EXACT_WITH_MODE \
"diff --git a/RENAMED.md b/README.md\n" \
"old mode 100644\n" \
"new mode 100755\n" \
"similarity index 100%\n" \
"rename from RENAMED.md\n" \
"rename to README.md\n"
#define PATCH_RENAME_SIMILAR \
#define PATCH_RENAME_SIMILAR \
"diff --git a/file.txt b/newfile.txt\n" \
"diff --git a/file.txt b/newfile.txt\n" \
"similarity index 77%\n" \
"similarity index 77%\n" \
...
...
tests/patch/print.c
View file @
1c7fb212
...
@@ -107,6 +107,12 @@ void test_patch_print__rename_exact(void)
...
@@ -107,6 +107,12 @@ void test_patch_print__rename_exact(void)
strlen
(
PATCH_RENAME_EXACT
));
strlen
(
PATCH_RENAME_EXACT
));
}
}
void
test_patch_print__rename_exact_with_mode
(
void
)
{
patch_print_from_patchfile
(
PATCH_RENAME_EXACT_WITH_MODE
,
strlen
(
PATCH_RENAME_EXACT_WITH_MODE
));
}
void
test_patch_print__rename_similar
(
void
)
void
test_patch_print__rename_similar
(
void
)
{
{
patch_print_from_patchfile
(
PATCH_RENAME_SIMILAR
,
patch_print_from_patchfile
(
PATCH_RENAME_SIMILAR
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment