Why does Git remember and use a conflict resolution from an aborted rebase without asking me?

前端 未结 2 797
悲哀的现实
悲哀的现实 2021-02-04 04:11

I did a rebase on my branch foo

git rebase master

Did some conflict resolutions, then decided I didn\'t want to do it, and aborted

相关标签:
2条回答
  • 2021-02-04 05:03

    use git checkout --conflict=merge -- your_file to get the version of the file with conflicts

    0 讨论(0)
  • 2021-02-04 05:08

    You can use rerere's "forget" function to erase a remembered conflict resolution.

    0 讨论(0)
提交回复
热议问题