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?
feedback
|
|
http://schacon.github.com/git/git-reset.html
| |||||||||||||||||||||
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.
You want to nuke commit C and never see it again. You do this:
The result is:
Now B is the HEAD. Because you used 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:
You can do this, leaving off the
In this case the result is:
In both cases, HEAD is just a pointer to the latest commit. When you do a For the lightest touch, you can even undo your commit but leave your files and your index:
This not only leaves your files alone, it even leaves your index alone. When you do 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
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. | |||||||||||||||||||||
feedback
|
|
Add/remove files to get things the way you want:
Then amend the commit:
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. | |||||||||||||||||||||
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 commitLets say I committed locally, but now want to remove that commit.
To restore everything back to the way it was prior to the last commit, we need to
Now How to undo a public commitIf 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).
Your changes will now be reverted and ready for you to commit:
For more info, check out Git Book - Reset, Checkout and Revert | |||||||||||
feedback
|
or
The hard reset to HEAD-1 will set your working copy to the state of the commit before your wrong commit. | |||||||||||||
feedback
|
|
Make any changes you need to, then: If it's a private branch you can
If it's a shared branch you'll have to make a new commit:
You also may want to think about using a global gitignore to stop this kind of thing happening again. | |||||
feedback
|
|
If you have Git Extras installed, you can run | |||
|
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.
| |||
|
feedback
|
|
Use git revert SHA-Of-The-Commit-You-Want-To-Revert To get the SHA, just use git log | |||
|
feedback
|