To move the branch pointer of a checked out branch, one can use the git reset --hard command. But how to move the branch pointer of a not-checked out branch to point at a different commit (keeping all other stuff like tracked remote branch)?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
You can do it for arbitrary refs: You can pick nits about the reflog message if you like - I believe the You have to use the full reference name: not |
|||||||||||||
|
|
|||||||||||||||||||
|
|
You can also pass For example:
I find I do something like this semi-frequently: Assuming this history
|
|||
|
|
git branch <branch-name> <SHA-1-of-the-commit>and dump the old branch? – yasouser Mar 29 '11 at 20:31