I accidentally added wrong directory containing my files instead of adding .java file i added the directory containing .class file how can i undo this action?
|
|
http://www.kernel.org/pub/software/scm/git/docs/git-reset.html
|
||
|
|
|
|
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. |
||
|
|
|
|
or
The hard reset to HEAD-1 will set your working copy to the state of the commit before your wrong commit. |
||||
|
