Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to make a branch from master then revert master back to a certain point. How can this be achieved with git?

share|improve this question

1 Answer

up vote 4 down vote accepted

git checkout master
git branch newBranch
git reset shaToResetMasterTo

share|improve this answer
Now the remote repo is ahead by many commits. How can I push my reverted changes back? Is there a way to revert by range? like git revert HEAD^..shaResettedTo – Chris Ledet Jul 25 '11 at 20:28
1  
Not sure I am following you. Do you want both the newBranch and master to be at the same spot? – Andy Jul 25 '11 at 20:37
No, I want something like git reset shaHere to make a commit to undo all the previous changes so master isn't behind on remote/master. Make sense? Something like git revert <sha> but that reverts one commit. – Chris Ledet Jul 25 '11 at 20:38
1  
Ahh, I misread your comment. git push remote master if it is tracking the remote master, it will push remote/master to the correct spot. – Andy Jul 25 '11 at 20:44
This worked. Thanks Andy! – Chris Ledet Jul 25 '11 at 20:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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