1

Whenever I use git cherry-pick and there are conflicts, after resolving the conflicts and running git cherry-pick --continue, the commit message has an added Conflicts: section, like so:

<The original commit message>

Conflicts:
    <path of first file that had a conflict>
    ...
    <path of last file that had a conflict>

# The usual comment with instructions

The Conflicts: section is not commented out, so if left unchanged, it becomes a part of the actual commit message of the cherry-picked commit.

So, two questions about this:

  1. Why is this section useful at all? If I resolved the conflicts, why is the fact that they existed relevant?

  2. Is there a way to disable this behaviour? I find it annoying to have to delete that section manually every time.

EDIT: Since a comment suggests that the behaviour may be dependent on the version of git: I'm using git 2.1.4, which is the version present in Debian stable's repositories.

1
  • 2
    A newer version of Git puts these lines in the comment section so they won't be part of the message. These lines record which files have conflicts. It might be useful when one wants to know what happened during the merge.
    – ElpieKay
    Jan 25, 2017 at 5:27

1 Answer 1

1

For your questions:

  1. It mainly caused there still have conflicts. You can use git status to check. If there have conflicts, you should modify and save the conflict files, then use git add . and git commit. Also you can update git to latest version.

  2. Yes, you can use -X to solve the conflicts automatically. Such as git cherry-pick SHA -X [ours|theirs]. ours means to keep changes from current branch, theirs means keep changes from the SHA.

4
  • As mentioned, I see this section even after resolving all conflicts. Jan 25, 2017 at 5:20
  • 2
    Did you use git add . before git cherry-pick --continue?
    – Marina Liu
    Jan 25, 2017 at 9:06
  • Yes, either git add . or git add <path> for each conflicting path. Jan 25, 2017 at 15:20
  • Since all the conflict files were marked as solve conflict by git add, that means you can continue cherry-pick. So the message you got may caused by different git version. I use git 2.10.1, it doesn't show the message.
    – Marina Liu
    Jan 26, 2017 at 5:18

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.