How to resolve a conflict with git-svn?

后端 未结 2 1628
野的像风
野的像风 2021-01-29 18:51

What is the best way to resolve a conflict when doing a git svn rebase, and the git branch you are on becomes \"(no-branch)\"?

2条回答
  •  野的像风
    2021-01-29 19:18

    You can use git mergetool to view and edit the conflicts in the usual fashion. Once you are sure the conflicts are resolved do git rebase --continue to continue the rebase, or if you don't want to include that revision do git rebase --skip

提交回复
热议问题