When applying a patch is there any way to resolve conflicts?

前端 未结 4 1666
遇见更好的自我
遇见更好的自我 2020-12-22 15:34

I am on windows.

For various reasons we have multiple git instances of different svn branches.

Many times I want to fix an issue in repository A, generate

4条回答
  •  一生所求
    2020-12-22 16:31

    If you are frequently running into the same conflict set when applying patches, rebasing or merging then you can use git rerere (reuse recorded resolution) function. This allows you to pre-define how conflicts should be resolved based on how you resolved them in the past. See http://git-scm.com/blog/2010/03/08/rerere.html for details of how this works.

提交回复
热议问题