开发者

Git Merge Conflict (UU): How do I resolve conflict without adding file to next commit?

开发者 https://www.devze.com 2023-04-06 13:53 出处:网络
How do I resolve a UU (merge conflict) without adding that file to the next commit. For example, I just cherry picked a commi开发者_如何学Pythont to another branch and there were merge issues. I solv

How do I resolve a UU (merge conflict) without adding that file to the next commit.

For example, I just cherry picked a commi开发者_如何学Pythont to another branch and there were merge issues. I solved the merge issue and want UU readme.txt changed to M readme.txt but it not be added to the next commit I make.

Thanks


I don't know what version of git you were using back in '11, but right now I'm on 1.7.7.4.

It appears to me that doing an add to mark the conflict resolved does add the file to the stage; so my approach is:

git add <filename>
git reset HEAD <filename>

You could also create a custom git command that does this for you. I created an executable file named git-resolve (no extension) in a directory on my path (I like to put stuff like this in ~/.bin) and put this in it:

git add $@
git reset HEAD $@

Then from the command line, after I've resolved my conflicts, I can do:

$ git resolve <filename>
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号