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
61f1e31a
Unverified
Commit
61f1e31a
authored
Feb 02, 2022
by
Edward Thomson
Committed by
GitHub
Feb 02, 2022
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #6197 from libgit2/ethomson/merge_msg_conflict_comment
merge: comment conflicts lines in MERGE_MSG
parents
18a477e7
c0297d47
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
13 deletions
+13
-13
src/merge.c
+2
-2
tests/cherrypick/workdir.c
+7
-7
tests/merge/workdir/simple.c
+2
-2
tests/revert/workdir.c
+2
-2
No files found.
src/merge.c
View file @
61f1e31a
...
...
@@ -3126,7 +3126,7 @@ int git_merge__append_conflicts_to_merge_msg(
(
error
=
git_filebuf_open
(
&
file
,
file_path
.
ptr
,
GIT_FILEBUF_APPEND
,
GIT_MERGE_FILE_MODE
))
<
0
)
goto
cleanup
;
git_filebuf_printf
(
&
file
,
"
\n
Conflicts:
\n
"
);
git_filebuf_printf
(
&
file
,
"
\n
#
Conflicts:
\n
"
);
for
(
i
=
0
;
i
<
git_index_entrycount
(
index
);
i
++
)
{
const
git_index_entry
*
e
=
git_index_get_byindex
(
index
,
i
);
...
...
@@ -3135,7 +3135,7 @@ int git_merge__append_conflicts_to_merge_msg(
continue
;
if
(
last
==
NULL
||
strcmp
(
e
->
path
,
last
)
!=
0
)
git_filebuf_printf
(
&
file
,
"
\t
%s
\n
"
,
e
->
path
);
git_filebuf_printf
(
&
file
,
"
#
\t
%s
\n
"
,
e
->
path
);
last
=
e
->
path
;
}
...
...
tests/cherrypick/workdir.c
View file @
61f1e31a
...
...
@@ -170,9 +170,9 @@ void test_cherrypick_workdir__conflicts(void)
cl_assert
(
strcmp
(
git_str_cstr
(
&
mergemsg_buf
),
"Change all files
\n
"
\
"
\n
"
\
"Conflicts:
\n
"
\
"
\t
file2.txt
\n
"
\
"
\t
file3.txt
\n
"
)
==
0
);
"
#
Conflicts:
\n
"
\
"
#
\t
file2.txt
\n
"
\
"
#
\t
file3.txt
\n
"
)
==
0
);
cl_git_pass
(
git_futils_readbuffer
(
&
conflicting_buf
,
TEST_REPO_PATH
"/file2.txt"
));
...
...
@@ -352,10 +352,10 @@ void test_cherrypick_workdir__both_renamed(void)
cl_assert
(
strcmp
(
git_str_cstr
(
&
mergemsg_buf
),
"Renamed file3.txt -> file3.txt.renamed
\n
"
\
"
\n
"
\
"Conflicts:
\n
"
\
"
\t
file3.txt
\n
"
\
"
\t
file3.txt.renamed
\n
"
\
"
\t
file3.txt.renamed_on_branch
\n
"
)
==
0
);
"
#
Conflicts:
\n
"
\
"
#
\t
file3.txt
\n
"
\
"
#
\t
file3.txt.renamed
\n
"
\
"
#
\t
file3.txt.renamed_on_branch
\n
"
)
==
0
);
git_str_dispose
(
&
mergemsg_buf
);
git_commit_free
(
commit
);
...
...
tests/merge/workdir/simple.c
View file @
61f1e31a
...
...
@@ -278,8 +278,8 @@ void test_merge_workdir_simple__mergefile(void)
cl_assert
(
strcmp
(
git_str_cstr
(
&
mergemsg_buf
),
"Merge commit '7cb63eed597130ba4abb87b3e544b85021905520'
\n
"
\
"
\n
"
\
"Conflicts:
\n
"
\
"
\t
conflicting.txt
\n
"
)
==
0
);
"
#
Conflicts:
\n
"
\
"
#
\t
conflicting.txt
\n
"
)
==
0
);
git_str_dispose
(
&
conflicting_buf
);
git_str_dispose
(
&
mergemsg_buf
);
...
...
tests/revert/workdir.c
View file @
61f1e31a
...
...
@@ -119,8 +119,8 @@ void test_revert_workdir__conflicts(void)
"
\n
"
\
"This reverts commit 72333f47d4e83616630ff3b0ffe4c0faebcc3c45.
\n
"
"
\n
"
\
"Conflicts:
\n
"
\
"
\t
file1.txt
\n
"
)
==
0
);
"
#
Conflicts:
\n
"
\
"
#
\t
file1.txt
\n
"
)
==
0
);
git_commit_free
(
commit
);
git_commit_free
(
head
);
...
...
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