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

link|improve this question

68% accept rate
24  
It appears I'm not the only person. – Xeoncross Mar 8 at 21:02
feedback

9 Answers

up vote 863 down vote accepted

http://schacon.github.com/git/git-reset.html

Undo a commit and redo

$ git commit ...
$ git reset --soft HEAD^      (1)
$ edit                        (2)
$ git add ....                (3)
$ git commit -c ORIG_HEAD     (4)
  1. 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".

  2. Make corrections to working tree files.

  3. Stage changes for commit.

  4. "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.

link|improve this answer
25  
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
18  
Be careful with that -a in point (3) it commits all changes ! – Zitrax Jan 27 '11 at 14:42
12  
@bdonlan's answer below is much simpler than this – Horace Loeb Jan 29 '11 at 4:15
35  
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
7  
(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 2 more comments
feedback

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.

link|improve this answer
82  
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
14  
True, this is really the best explanation. – Riccardo Sep 8 '11 at 19:33
19  
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
4  
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
2  
I <3 "git reset --soft HEAD~1". Most equivalent to hitting '⌘Z', for me. – nessur Dec 19 '11 at 18:09
show 14 more comments
feedback

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.

link|improve this answer
55  
+1 much easier than the accepted answer! – Brad Cupit Jan 18 '11 at 15:38
6  
@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
3  
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
1  
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 at 10:01
1  
@Dennis, git commit --amend turns the current tree (ie, staged changes) into a commit, overwriting current HEAD. After that point, they're not considered staged anymore because they're part of the commit (ie, git diff --cached is blank), but they're not "removed" or "lost". – bdonlan Feb 1 at 3:08
show 4 more comments
feedback

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

link|improve this answer
2  
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
+1 More comprehensible to me than the above two – m3rLinEz Oct 12 '11 at 17:09
+1 Explaining what's going on – UberNeet Oct 14 '11 at 19:08
+1 short, sweet, works :) – Yuttadhammo Feb 4 at 13:06
feedback
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.

link|improve this answer
17  
"--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
13  
Despite the downvotes, I'm glad this answer is here. – Gavin Aug 6 '10 at 7:55
2  
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
feedback

Make any changes you need to, then:

If it's a private branch you can amend the commit:

git commit --amend

If it's a shared branch you'll have to make a new commit:

git commit -m 'Remove accidental .class files.'
git push

You also may want to think about using a global gitignore to stop this kind of thing happening again.

link|improve this answer
8  
+1 for suggesting a gitignore to skip class files! – David Gardner Apr 18 '11 at 10:59
feedback

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.

link|improve this answer
feedback

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>
link|improve this answer
feedback

Use git revert SHA-Of-The-Commit-You-Want-To-Revert

To get the SHA, just use git log

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.