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?
|
|
Another quicker way is:
After that, you can drop that stash with a |
|||||||||||||||||||
|
|
For a specific file use:
For all unstaged files use:
Make sure to include the period at the end. |
|||||||||||||||||||||
|
|
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.
|
|||
|
|
|
It looks that complete solution is:
git clean removes all untracked files and git checkout clears all unstaged changes |
|||||||||||
|
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 |
|||||||||||
|
|
Reverts to last commit and discards any non-committed changes. Update: Martjin is correct, this would get rid of staged and unstaged non-committed changes. That may not have been clear in the statement; though, the answer was based on the body of the question and not its title -- the body of the question should have also mentioned "unstaged" changes. |
|||||||
|
|
Wouldn’t a simple “ |
|||||||||||||||
|
|
If you aren't interested in keeping the unstaged changes (especially if the staged changes are new files), I found this handy:
|
|||
|
|
|
Tried all the solutions above but still couldn't get rid of new, unstaged files. Use |
|||||
|
|
I really found this article helpful for explaining when to use what command: http://www.szakmeister.net/blog/2011/oct/12/reverting-changes-git/ There are a couple different cases:
I suspect that using Take a look at the article above for further advice. |
||||
|
|
|
Another way to get rid of new files that is more specific than git clean -df (it will allow you to get rid of some files not necessarily all), is to add the new files to the index first, then stash, then drop the stash. This technique is useful when, for some reason, you can't easily delete all of the untracked files by some ordinary mechanism (like rm). |
|||
|
|
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. |
|||||
|
