vote up 6 vote down star
4

We're using Github. I have committed, and pushed, several patches: A1-->A2-->A3-->A4 (HEAD)

Everyone's pulled these changesets into their local copy.

Now we want to "roll back" to A2, and continue developing from there - essentially throwing away A3 and A4. What's the best way to do this?

flag

30% accept rate

3 Answers

vote up 3 vote down

You want git-revert and git-reset depending on how you want to treat A3 and A4. To remove all trace of A3 and A4, use git-reset --hard. To keep A3 and A4 and record the fact you are reverting, use git-revert.

edit: Aristotle Pagaltzis's git-checkout solution is superior, though for small reverts I don't see a problem with git-revert. None the less, I ask future upvotes be given to Aristotle Pagaltzis's answer

I found git magic to be a good resource for git.

link|flag
The original poster almost certainly wants revert not reset. Since everyone has pulled A3 and A4 into their own local repositories, I think resetting would mess things up. – Peter Burns Oct 20 '08 at 20:50
git-revert will only revert one commit at a time and git-reset is the wrong thing to do for published changes. The correct answer is git-checkout. – Aristotle Pagaltzis Oct 21 '08 at 8:19
Aristotle Pagaltzis: you are correct, I have striken it from my answer. – freespace Oct 21 '08 at 10:56
vote up 5 vote down

Throwing away those commits will likely have some negative effects on anyone who is pulling from your repository. As another option, you may want to consider creating an alternate development branch starting at A2:

A1-->A2-->A3-->A4 (master/HEAD)
      \
       -->B1-->B2 (new-master/HEAD)

Doing this is as simple as

git branch new-master master~2
link|flag
vote up 14 vote down

From the root directory of your working copy just do

git checkout A2 -- .  
git commit -m 'going back to A2'


Using git revert for this purpose would be cumbersome, since you want to get rid of a whole series of commits and revert undoes them one at a time.

You do not want git reset since that will merely change your master branch pointer locally, to a commit that is not a child of the remote repository’s master branch pointer. That will cause any push attempt to fail; you’d have to delete the master branch in the remote repo first and recreate it by pushing. Then everyone who tries to fetch/pull from it is going to have errors in turn, which means they in turn will need to delete their own remote tracking branch (origin/master most likely) before fetching again (pulling won’t work; they need to fetch first to recreate the remote tracking branch). And you are left with no record of the mistaken direction. In short, don’t do that.

link|flag

Your Answer

Get an OpenID
or

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