1

I am learning git right now. I tried to rebase a file a while ago, but cancelled it. Ever since then, I have this showing up in turquoise in my git.

(updatingThesePages|REBASE-i)

but the current branch I am on is 'other' and not 'updatingThesePages'. How can I get out of this?

Thanks!

1 Answers1

0

For cancelling a rebase done "a while ago", a more complete command would be (with Git 2.12+) git rebase --quit.

That will get rid of any lingering .git/<some rebase dir> in your repo.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250