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

I accidentally added the wrong directory containing my files in Git. Instead of adding a .java file, I added the directory containing the .class file. How can I undo this action?

share|improve this question
274  
By the number of upvotes here and in the answers, it looks like git needs to add a git commit --undo option – Kyle Heironimus Sep 28 '12 at 21:12
77  
@KyleHeironimus: Easy enough: git config --global alias.undo-commit 'reset --soft HEAD^' Then just type git undo-commit as needed. – RecursivelyIronic Feb 15 at 22:28

15 Answers

up vote 2463 down vote accepted

http://git-scm.com/docs/git-reset

Undo a commit and redo

$ git commit ...              (1)
$ git reset --soft HEAD^      (2)
$ edit                        (3)
$ git add ....                (4)
$ git commit -c ORIG_HEAD     (5)
  1. This is what you want to undo

  2. This is most often done when you remembered what you just committed is incomplete, or you misspelled your commit message, or both. Leaves working tree as it was before "reset".

  3. Make corrections to working tree files.

  4. Stage changes for commit.

  5. "reset" copies the old head to .git/ORIG_HEAD; redo the commit by starting with its log message. If you do not need to edit the message further, you can give -C option instead.

share|improve this answer
68  
And if the commit was to the wrong branch, you may git checkout theRightBranch with all the changes stages. As I just had to do. – Frank Shearar Oct 5 '10 at 15:44
30  
Be careful with that -a in point (3) it commits all changes ! – Zitrax Jan 27 '11 at 14:42
27  
@bdonlan's answer below is much simpler than this – Horace Loeb Jan 29 '11 at 4:15
86  
If you're working in DOS, instead of git reset --soft HEAD^ you'll need to use git reset --soft HEAD~1. The ^ is a continuation character in DOS so it won't work properly. Also, --soft is the default, so you can omit it if you like and just say git reset HEAD~1. – Kyralessa Apr 13 '11 at 14:15
17  
(Correction to what I wrote above; --mixed is the default. --mixed means to keep the changed files, but not keep them in the index. --soft would keep the changed files and keep them in the index as they were just before the changed commit. Sorry for the confusion.) – Kyralessa Nov 17 '11 at 2:40
show 8 more comments

Undoing a commit is a little scary if you don't know how it works. But it's actually amazingly easy if you do understand.

Say you have this, where C is your HEAD and (F) is the state of your files.

   (F)
A-B-C
    ↑
  master

You want to nuke commit C and never see it again. You do this:

git reset --hard HEAD~1

The result is:

 (F)
A-B
  ↑
master

Now B is the HEAD. Because you used --hard, your files are reset to their state at commit B.

Ah, but suppose commit C wasn't a disaster, but just a bit off. You want to undo the commit but keep your changes for a bit of editing before you do a better commit. Starting again from here, with C as your HEAD:

   (F)
A-B-C
    ↑
  master

You can do this, leaving off the --hard:

git reset HEAD~1

In this case the result is:

   (F)
A-B-C
  ↑
master

In both cases, HEAD is just a pointer to the latest commit. When you do a git reset HEAD~1, you tell Git to move the HEAD pointer back one commit. But (unless you use --hard) you leave your files as they were. So now git status shows the changes you had checked into C. You haven't lost a thing!

For the lightest touch, you can even undo your commit but leave your files and your index:

git reset --soft HEAD~1

This not only leaves your files alone, it even leaves your index alone. When you do git status, you'll see that the same files are in the index as before. In fact, right after this command, you could do git commit and you'd be redoing the same commit you just had.

One more thing: Suppose you destroy a commit as in the first example, but then discover you needed it after all? Tough luck, right?

Nope, there's still a way to get it back. Type git reflog and you'll see a list of (partial) commit shas that you've moved around in. Find the commit you destroyed, and do this:

git checkout -b someNewBranchName shaYouDestroyed

You've now resurrected that commit. Commits don't actually get destroyed in Git for some 90 days, so you can usually go back and rescue one you didn't mean to get rid of.

share|improve this answer
310  
This is actually a proper explanation of what's happening, unlike the answers with more votes. I wish I could vote for this answer more than once. – uckelman Sep 5 '11 at 10:14
38  
True, this is really the best explanation. – Riccardo Sep 8 '11 at 19:33
58  
To any newcomers to this post, as of the date of this comment this answer remains the best answer present in terms of readability, comprehensiveness, and usefulness. Thank you, Kyralessa! – eblume Sep 27 '11 at 7:29
13  
no doubt, your answer should be on the very top. While the others aren't wrong they aren't as much to the point.. – gilligan Dec 10 '11 at 18:11
22  
I <3 "git reset --soft HEAD~1". Most equivalent to hitting '⌘Z', for me. – nessur Dec 19 '11 at 18:09
show 19 more comments

Add/remove files to get things the way you want:

git rm classdir
git add sourcedir

Then amend the commit:

git commit --amend

The previous, erroneous commit will be edited to reflect the new index state - in other words, it'll be like you never made the mistake in the first place :)

Note that you should only do this if you haven't pushed yet. If you have pushed, then you'll just have to commit a fix normally.

share|improve this answer
87  
+1 much easier than the accepted answer! – Brad Cupit Jan 18 '11 at 15:38
1  
Does this work when I did a git commit --amend and what I really meant to do is a git commit? – dbm May 18 '11 at 13:07
11  
@dbm, if you accidentally amended, use git reset --soft <oldref>, where oldref is the commit ID before the amend. You can use git reflog to identify the old commit ID. This will undo the effects of the amend, but leave changes staged. Then just do git commit to commit as a regular commit. – bdonlan May 18 '11 at 14:20
4  
the accepted answer is better than this if you're doing something complicated like an interactive add and accidentally did -a, like i did. Still, both answers are very valid. – jhogendorn Jun 7 '11 at 3:59
4  
If you're foolish and don't think carefully you can lose staged changes with this approach. The accepted is more explicit and safer. Kyralessa's answer is a must read and infers a better understanding of what is really happening. – adamnfish Jan 6 '12 at 10:01
show 2 more comments

This took me a while to figure out, so maybe this will help someone...

There are two ways to "undo" your last commit, depending on whether or not you have already made your commit public (pushed to your remote repository):

How to undo a local commit

Lets say I committed locally, but now want to remove that commit.

git log
    commit 101: bad commit    # latest commit, this would be called 'HEAD'
    commit 100: good commit   # second to last commit, this is the one we want

To restore everything back to the way it was prior to the last commit, we need to reset to the commit before HEAD:

git reset --soft HEAD^     # use --soft if you want to keep your changes
git reset --hard HEAD^     # use --hard if you don't care about keeping the changes you made

Now git log will show that our last commit has been removed.

How to undo a public commit

If you have already made your commits public, you will want to create a new commit which will "revert" the changes you made in your previous commit (current HEAD).

git revert HEAD

Your changes will now be reverted and ready for you to commit:

git commit -m 'restoring the file I removed on accident'
git log
    commit 102: restoring the file I removed on accident
    commit 101: removing a file we dont need
    commit 100: adding a file that we need

For more info, check out Git Book - Reset, Checkout and Revert

share|improve this answer
7  
I found this answer the clearest. git revert HEAD^ is not the previous, is the previous of the previous. I did : git revert HEAD and then push again and it worked :) – nacho4d Jul 14 '11 at 8:32
2  
Needed to undo a "public" commit, thanks for your answer. – Xeon06 Jun 27 '12 at 18:53
git rm yourfiles/*.class
git commit -a -m "deleted all class files in folder 'yourfiles'"

or

git reset --hard HEAD~1

The hard reset to HEAD-1 will set your working copy to the state of the commit before your wrong commit.

share|improve this answer
22  
"--hard" will get rid of the modified .java files in the working directory that he wanted to commit. – Esko Luontola May 29 '09 at 18:26
17  
Despite the downvotes, I'm glad this answer is here. – Gavin Aug 6 '10 at 7:55
3  
You can "git stash save" working copy changes, do a hard reset and then "git stash pop" to get them back, though I suppose a soft reset would be simpler. – Asad R. Apr 15 '11 at 13:33
git reset --hard removed all panding changes. – Eugene Petrenko Jun 21 '12 at 14:43

Replace the files in the index:

git rm --cached file.class
git add file.java

Then, if it's a private branch, amend the commit:

git commit --amend

Or, if it's a shared branch, make a new commit:

git commit -m 'Replace .class files with .java files'

You may also want to add *.class to a gitignore to stop this happening again.

share|improve this answer

Use git revert commit-id

To get the commit ID, just use git log

share|improve this answer
2  
If you committed to the wrong branch: once reverted, switch to the correct branch and cherry-pick the commit. – Kris Jun 27 '12 at 11:02

If you have Git Extras installed, you can run git undo to undo the latest commit. git undo 3 will undo the last 3 commits.

share|improve this answer
2  
+1 For git extras. git undo should be in the core, as the number of votes on this post proves. – Breck Apr 3 at 16:26

I wanted to undo the lastest 5 commits in our shared repository. I looked up the revision id that I wanted to rollback to. Then I typed in the following.

prompt> git reset --hard 5a7404742c85
HEAD is now at 5a74047 Added one more page to catalogue
prompt> git push origin master --force
Total 0 (delta 0), reused 0 (delta 0)
remote: bb/acl: neoneye is allowed. accepted payload.
To git@bitbucket.org:thecompany/prometheus.git
 + 09a6480...5a74047 master -> master (forced update)
prompt>
share|improve this answer
1  
Rewriting history on a shared repository is generally a very bad idea. I assume you know what you're doing, I just hope future readers do too. – Brad Koch Dec 7 '12 at 16:02
Yes rollback is dangerous. Make sure that your working copy is in the desired state before you push. When pushing then the unwanted commits gets deleted permanently. – neoneye Dec 8 '12 at 14:14

I prefer to use git rebase for this job, because a nice list pops up where I can choose the commits to get rid of. It might not be as direct as some other answers here, but it just feels "right".

Choose how many commits you want to list, then invoke like this

git rebase -i HEAD~3

Sample list

pick aa28ba7 Sanity check for RtmpSrv port
pick c26c541 RtmpSrv version option
pick 58d6909 Better URL decoding support

Then git will remove commits for any line that you remove.

share|improve this answer

If you are planning undoing a local commit entirely, whatever you changes you did on the commit, and if you don't worry anything about that, just do the following command.

git reset --hard HEAD^1

(This command will ignore your entire commit and your changes will be lost completely from your local working tree). If you want undo your commit, but you want changes you did on the commit into the staging area (before commit just like after git add called the staging area) then do the following command.

git reset --soft HEAD^1

Now your committed files comes into the staging area. Suppose if you want to unstage the files, because you need to edit some wrong conent, then do the following command

git reset HEAD

Now committed files come from the staged area into the unstaged area. Now files are ready to edit, so whatever you changes, you want go edit and added it and make a fresh/new commit.

More

share|improve this answer

If you want to permanently undo it and you have cloned some repository

The commit id can be seen by

git log 

Then you can do -

git reset --hard <commit_id>

git push origin <branch_name> -f
share|improve this answer

how to fix the previous local commit

Use git gui to perform a git commit --amend.

how to undo the previous local commit

Just reset your branch to the previous location (e.g. using gitk or git rebase), then reapply your changes from a saved copy. After garbage collection in your local repo, it will be like the unwanted commit never happened.

how to undo a public commit

Perform a reverse cherry pick (git-revert) to undo the changes.

If you haven't yet pulled other changes onto your branch, you can simply do...

git revert --no-edit HEAD

Then push your updated branch to the shared repo.

share|improve this answer

type git log and find the last commit hash code and then give git reset

share|improve this answer

Another way:

Checkout the branch you want to revert, then reset your local working copy back to the commit that you want to be the latest one on the remote server (everything after it will go bye-bye). To do this, in SourceTree I right-clicked on the and selected "Reset BRANCHNAME to this commit".

Then navigate to your repository's local directory and run this command:

git -c diff.mnemonicprefix=false -c core.quotepath=false push -v -f --tags REPOSITORY_NAME BRANCHNAME:BRANCHNAME

This will erase all commits after the current one in your local repository but only for that one branch.

share|improve this answer

protected by NullPoiиteя Jun 10 at 5:01

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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