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?
|
|
||||
|
http://git-scm.com/docs/git-reset
|
|||||||||||||||||||||
|
|
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. |
|||||||||||||||||||||
|
|
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. |
|||||||||||||||||||||
|
|
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 |
||||
or
The hard reset to HEAD-1 will set your working copy to the state of the commit before your wrong commit. |
|||||||||||||||
|
|
Replace the files in the index:
Then, if it's a private branch, amend the commit:
Or, if it's a shared branch, make a new commit:
You may also want to add |
||||
|
|
|
Use To get the commit ID, just use |
|||||
|
|
If you have Git Extras installed, you can run |
|||||
|
|
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.
|
|||||||
|
|
I prefer to use Choose how many commits you want to list, then invoke like this
Sample list
Then git will remove commits for any line that you remove. |
||||
|
|
|
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.
(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
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
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. |
||||
|
|
|
If you want to permanently undo it and you have cloned some repository The commit id can be seen by
Then you can do -
|
||||
|
|
how to fix the previous local commitUse git gui to perform a how to undo the previous local commitJust reset your branch to the previous location (e.g. using how to undo a public commitPerform 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...
Then push your updated branch to the shared repo. |
||||
|
|
|
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:
This will erase all commits after the current one in your local repository but only for that one branch. |
||||
|
|
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.
git commit --undooption – Kyle Heironimus Sep 28 '12 at 21:12git config --global alias.undo-commit 'reset --soft HEAD^'Then just typegit undo-commitas needed. – RecursivelyIronic Feb 15 at 22:28