Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I cloned a git repository and then tried to roll it back to a particular changeset early on in the development process. Everything that was added to the repository after that point is unimportant to me so I want to omit all subsequent changes from my local source code.

However, when I try to roll back in the GUI tool it doesn't update my local file system - I always end up with the latest source code for the project.

What's the correct way to just get the source for a repository as of a particular commit in the project's history and omit all later updates?

share|improve this question

3 Answers

up vote 265 down vote accepted
git reset --hard <tag/branch/commit id>
share|improve this answer
38  
git reset without the --hard option resets the commit history but not the files. With the --hard option also files in working tree are reset. – kauppi Oct 24 '09 at 4:38
Just what I needed. Thank you! – Lee Tang Oct 24 '09 at 4:47
23  
If you wish to commit that state, so remote repository also points to rolled back commit do: git push <reponame> -f – Mariusz Nowak Dec 30 '11 at 18:59
1  
@MariuszNowak after doing git reset --hard <commit-id>, ( 2 back ) when doing "git push -f origin master" I get "remote: error: denying non-fast-forward refs/heads/master (you should pull first)" it is my repo and I want to take it back :) – peterk Mar 21 '12 at 19:25
5  
@peterk try --force at the end of your git push command – Arcolye Apr 3 '12 at 10:07
show 5 more comments

A slightly less scary way to do this than the git reset --hard method is to create a new branch. Let's assume that you're on the master branch and the commit you want to go back to is c2e7af2b51.

Rename your current master branch:

git branch -m crazyexperiment

Check out your good commit:

git checkout c2e7af2b51

Make your new master branch here:

git checkout -b master

Now you still have your crazy experiment around if you want to look at it later, but your master branch is back at your last known good point, ready to be added to. If you really want to throw away your experiment, you can use:

git branch -D crazyexperiment
share|improve this answer
9  
Thanks - might not have been what the poster asked for, but much less anxiety-inducing for me. – Matt Parker Jun 22 '10 at 17:12
5  
Dealing with a remote repository (such as Github), you may have to do a 'git push -f origin master' because of the non-fastforwards to get master to look like it did at the specified commit, but this method is much cleaner than reset. – jcalvert Mar 9 '11 at 16:04
1  
git reset --hard is not that particularly dirty. It is introduced in nearly every git tutorial available as the proper method to undo changes in your own tree. If not in basic features, at least in intermediate ones. If you somehow get into an unknown state/HEAD, there's always git reflog which tells the history of HEAD regardless of branches. Pick a proper commitid from there, and branch from it or git reset --hard with that. – kauppi Jun 17 '11 at 10:57
2  
kauppi - wouldnt you then have issues pushing back to a remote repo? – HaveAGuess Nov 14 '12 at 2:01
1  
Im dancing in my "how do I fix all my problems" chair. – Mixologic Feb 8 at 0:58
show 1 more comment

For those with a git gui bent, you can also use gitk.

Right click on the commit you want to return to and select "Reset master branch to here". Then choose hard from the next menu.

share|improve this answer

Your Answer

 
discard

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