If some changes are added to the index and there are some changes that are not added to the index, how do I discard the changes in my working copy that are not added to the index yet?
|
6
|
|
|
|
|
|
Another quicker way is:
After that, you can drop that stash with a |
||
|
|
|
|
|
||||
|
|
|
Will get you something similar to stash save, but without cluttering your stash (or requiring an extra step to drop). Of course, any number of steps are scriptable. Either one will work. |
|||
|
|
|
Wouldn’t a simple “ |
||||
|
|
|
git reset --hard |
||
|
|
|
This checks out the current index for the current directory, throwing away all changes in files from the current directory downwards.
or this which checks out all files from the index, overwriting working tree files.
|
||
|
|
