Possible Duplicate:
git delete and recreate branch
To be honest I'm not sure ORIG_HEAD can be called a branch, yet it appears in my visual editor as one.
I have made a "git reset --hard HEAD~1" and then made some changes, finally committing them. How to get right of that ORIG_HEAD branch?
See "HEAD and ORIG_HEAD in Git":
In your case, you did a
git reset
, so Git left a "reminder" of where you were before said reset.You can ignore it.
You can also get rid of it with a simple
That is what the
example/git-reset.sh
script does for instance.