up vote 25 down vote favorite
24
share [g+] share [fb]

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)"?

link|improve this question

feedback

3 Answers

up vote 10 down vote accepted

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

link|improve this answer
awesome, helped me out – orip Jan 3 '10 at 17:35
feedback

After some googling I found a good answer on Larry's blog (Thanks Larry):

While doing a "git svn rebase", if you have merge conflicts here are some things to remember:

  • While doing a rebase, if anything bad happens, you end up on a "(no-branch)" branch.
  • When doing a "git status", you'll see a ".dotest" file in your working directory. Just ignore it.
  • If you want to bail, do a "git rebase --abort". (Note there is no "git svn rebase --abort".)
  • Fix the merge conflict file manually, then do a "git add [file]".
  • Next do a "git rebase --continue". (Note there's no "svn" version of this either.)
  • If it complains about "did you forget to call 'git add'?", then evidently your edit turned the conflict into a no-op change. Do a "git rebase --skip" to skip it. (Very weird, but true.)
  • Rinse and repeat until the lather is gone, your scalp silky smooth, and the rebase is complete. At any time you can "git rebase --abort" to bail.
link|improve this answer
3  
just got hit with the no-op change thing, really odd – Sam Saffron Jun 7 '09 at 1:16
2  
I got this no-op too and --skip solved it nicely. Thanks. – Martin Dec 23 '09 at 13:50
3  
Thanks for the --skip tip, didn't even consider it. – bojo Aug 25 '10 at 7:49
feedback

Here is detailed description git rebase

link|improve this answer
3  
-1 broken link. – Andrew M Mar 16 '11 at 13:59
feedback

Your Answer

 
or
required, but never shown

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