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

link|improve this question

76% accept rate
Sounds like all you wanted to do is a branch from a different commit than the one it is created from now. If my understanding is correct, then why don't you simply create a new branch from the commit you want to create it from using git branch <branch-name> <SHA-1-of-the-commit> and dump the old branch? – yasouser Mar 29 '11 at 20:31
feedback

3 Answers

up vote 7 down vote accepted

Or for arbitrary refs, git update-ref -m "reset: Reset <branch> to <new commit>" <branch> <commit>. (You can pick nits about the reflog message if you like - I believe the branch -f one is different from the reset --hard one, and this isn't exactly either of them.)

link|improve this answer
Seeing as It's been 6 months and Jefromi hasn't turned his/her comment into an answer, I'm doing it as community wiki so it gets exposure. I personally didn't see it until I had done a branch -f! – Adam A Nov 21 '11 at 2:06
Where is the message good for? Where is it stored and how to read it later? – Mike L. Mar 21 at 12:05
feedback
git branch -f branch-name new-tip-commit
link|improve this answer
9  
Or for arbitrary refs, git update-ref -m "reset: Reset <branch> to <new commit>" <branch> <commit>. (You can pick nits about the reflog message if you like - I believe the branch -f one is different from the reset --hard one, and this isn't exactly either of them.) – Jefromi Mar 29 '11 at 14:18
1  
Jefromi, please write a separate answer so you can get votes. :) – Mike L. Mar 29 '11 at 17:09
@MikeL. You can also upvote comments... – Pelle ten Cate May 5 '11 at 20:24
2  
@pelle-ten-cate But you can't accept them! – Duncan Parkes Sep 8 '11 at 20:36
feedback

You can also pass git reset --hard a commit reference.

For example:

git checkout branch-name
git reset --hard new-tip-commit

I find I do something like this semi-frequently:

Assuming this history

$ git log --decorate --oneline --graph
* 3daed46 (HEAD, master) New thing I shouldn't have committed to master
* a0d9687 This is the commit that I actually want to be master

# Backup my latest commit to a wip branch
$ git branch wip_doing_stuff

# Ditch that commit on this branch
$ git reset --hard HEAD^

# Now my changes are in a new branch
$ git log --decorate --oneline --graph
* 3daed46 (wip_doing_stuff) New thing I shouldn't have committed to master
* a0d9687 (HEAD, master) This is the commit that I actually want to be master
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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