up vote 22 down vote favorite
11
share [g+] share [fb]

I'm not sure why this doesn't make sense to me, I'm not clear on how git revert works, for example I want to revert to a commit (like 6 commits behind the head).

Say it's sha hash is: 56e05fced214c44a37759efa2dfc25a65d8ae98d

Why can't I just do something like:

git revert 56e05fced214c44a37759efa2dfc25a65d8ae98d
link|improve this question

2  
That is (one way) to invoke git revert, so if it doesn't work you need to post any errors that you are getting. – Charles Bailey Dec 12 '09 at 23:40
1  
Charles, I belive it does work, but it reverts one commit, not all commits up to the specified one. – Michael Krelin - hacker Dec 12 '09 at 23:42
1  
I know that, I must have mis-read the crucial 'to' that indicates that jpsilvashy was expected something else. – Charles Bailey Dec 12 '09 at 23:45
+1 for explaining your intentions... and the rarity of such on the interwebs. – Joseph Silvashy Dec 12 '09 at 23:48
On that note, I just realized I pretty much give everyone that answers my questions "+1"'s for giving their time. – Joseph Silvashy Dec 12 '09 at 23:49
feedback

5 Answers

up vote 20 down vote accepted

It reverts the said commit, that is adds commit opposite to it. If you want to checkout earlier revision you do the

git checkout 56e05fced214c44a37759efa2dfc25a65d8ae98d
link|improve this answer
then I can just merge this with the head? What if I anticipate having TONS of conflicts, can I just force this commit to be the head "as-is" and just overwrite any conflicts? – Joseph Silvashy Dec 12 '09 at 23:43
also btw... you got it. – Joseph Silvashy Dec 12 '09 at 23:43
1  
I'm not sure what head you're talking about. You can just move your head back to this commit. (for instance by deleting and creating branch). If you want to do a "merge" commit into the head, which is effectively the reversal of the intermediate commits, you can use merge with "ours" strategy. Pick your option and read manpages. The power is waiting for you to use it ;-) – Michael Krelin - hacker Dec 12 '09 at 23:48
That makes sense, the reason I ask is that git now tells me that I'm not on any branch. – Joseph Silvashy Dec 12 '09 at 23:51
1  
because you aren't. if you type git branch you will clearly see it. You can do for instance git checkout -b mybranch 56e05 to get it with branch. – Michael Krelin - hacker Dec 13 '09 at 0:06
feedback

If you want to commit on top of the current HEAD with the exact state at a different commit, undoing all the intermediate commits, then you can use reset to create the correct state of the index to make the commit.

# reset the index to the desired tree
git reset 56e05fced

# move the branch pointer back to the previous HEAD
git reset --soft HEAD@{1}

git commit -m "Revert to 56e05fced"

# Update working copy to reflect the new commit
git reset --hard
link|improve this answer
Fantastic! Thanks. – Ben Alpert Mar 20 '11 at 20:44
If I could give more up votes on this I would! – Jeff Thompson Jun 21 '11 at 21:10
thank you for this :) – GerManson Oct 18 '11 at 17:28
feedback

What git-revert does is create a commit which undoes changes made in given commit, creating a commit which is reverse (well, reciprocal) of a given commit. Therefore git revert <SHA-1> should and does work.

If you want to rewind back to specified commit, and you can do this because this part of history was not yet published, what you need to use is git-reset, not git-revert: git reset --hard <SHA-1> (note that -hard would make you loose any not comitted changes in working directory).


By the way, perhaps it is not obvious, but everywhere where documentation says <commit> or <commit-ish> (or <object>) you can put SHA-1 identifier (full or shortened) of commit.

link|improve this answer
With SO, last is best. – mitjak Jul 21 '10 at 20:27
feedback

This is more understandable:

git checkout 56e05fced -- .
git add .
git commit -m 'Revert to 56e05fced'

And to prove that it worked:

git diff 56e05fced
link|improve this answer
feedback

Supposing that your changes are PUBLISHED on line and you want to revert all comits between HEAD and your SHA_ID, then THE answer (a la git philosophy) to your question is:

git revert 56e05f..HEAD
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.