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?
|
feedback
|
|
Another quicker way is:
After that, you can drop that stash with a | |||||
feedback
|
|
For a specific file use:
For all unstaged files use:
Make sure to include the period at the end. | |||||||||||||||||||||
feedback
|
|
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.
| |||
|
feedback
|
Cleans the working tree by recursively removing files that are not under version control, starting from the current directory. -d = Remove untracked directories in addition to untracked files
-f = Force (might be not necessary depending on Run
to see the manual | |||
|
feedback
|
|
Wouldn’t a simple “ | |||||||||||
feedback
|
|
If, like me, you came here looking to selectively discard changes/hunks, you meant to look here: How to selectively revert or checkout changes in git? | |||
|
feedback
|
|
If you aren't interested in keeping the unstaged changes (especially if the staged changes are new files), I found this handy:
| |||
|
feedback
|
|
Tried all the solutions above but still couldn't get rid of new, unstaged files. Use | |||
feedback
|
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. | |||||
feedback
|
|
git reset --hard | |||||||||||
feedback
|