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?

link|improve this question

feedback

10 Answers

up vote 112 down vote accepted

Another quicker way is:

git stash save --keep-index

After that, you can drop that stash with a git stash drop command if you like.

link|improve this answer
13  
Because this surprised me a little: what this does is to stash all the unstaged changes. To truly be rid of them, you then need to follow up with the git stash drop. – Hober Mar 16 '11 at 14:35
feedback

For a specific file use:

git checkout path/to/file/to/revert

For all unstaged files use:

git checkout -- .

Make sure to include the period at the end.

link|improve this answer
1  
Thanks, that worked. Is there a way do that for all files in the repository instead of having to specify them individually? – Readonly Sep 9 '08 at 19:39
27  
git checkout -- . – Charles Bailey Jun 20 '09 at 10:14
19  
git checkout -- ., for the benefit of those who missed the punctuation on the end and are wondering why it doesn't work. – Kyralessa Jun 1 '11 at 13:14
4  
do you need the -- ? (and on a related note, since it isn't mentioned, git clean is useful to get rid of untracked files.) – Partly Cloudy Oct 4 '11 at 14:12
2  
@Partly, you don't need -- in the simple tests I did. I don't know if there are any exceptions. – Matthew Flaschen Nov 11 '11 at 0:11
show 1 more comment
feedback

This checks out the current index for the current directory, throwing away all changes in files from the current directory downwards.

git checkout .

or this which checks out all files from the index, overwriting working tree files.

git checkout-index -a -f
link|improve this answer
feedback
git clean -df

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 clean.requireForce setting)

Run git help clean

to see the manual

link|improve this answer
That works for untracked files but not for unstaged changed files – Macario Mar 14 at 2:27
feedback

@Ben Collins:

Wouldn’t a simple “git checkout HEAD -- $(git ls-files -m)” work?

link|improve this answer
yup. that'd work too. using the for loop was just the first thing that came to mind because I don't normally pass multiple paths to checkout. – Ben Collins Sep 17 '08 at 23:02
1  
If a file is modified in the index and again in the working tree this will discard the staged changes as well, though. – Charles Bailey Jun 20 '09 at 10:21
note: the backticks in the previous comment are misplaced, there seems to be a different syntax for comments that ignores double backticks (a bug maybe?) – asymmetric Dec 11 '09 at 21:04
That’s the same as what I wrote, other than that it doesn’t defend against the possibility that the first file listed is named the same as one of your refs, in which case the command line you showed would do the wrong thing. – Aristotle Pagaltzis Dec 16 '09 at 11:08
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?

link|improve this answer
feedback

If you aren't interested in keeping the unstaged changes (especially if the staged changes are new files), I found this handy:

git diff | git apply --reverse
link|improve this answer
this misses any untracked files, which may be a good thing – flickerfly Dec 22 '11 at 20:00
feedback

Tried all the solutions above but still couldn't get rid of new, unstaged files.

Use git clean -f to remove those new files - with caution though! Note the force option.

link|improve this answer
Elvis mentions the -d flag in another comment. That's worth appending here as it gets directories in addition to files, but should still be used with caution. :-) – flickerfly Dec 22 '11 at 20:03
feedback
for f in `git ls-files -m`; do git checkout HEAD -- $f; done

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.

link|improve this answer
1  
If a file is modified in the index and again in the working tree this will discard the staged changes as well, though. – Charles Bailey Jun 20 '09 at 10:22
feedback

git reset --hard

link|improve this answer
4  
This will throw away changes added to the index as well. – Charles Bailey Jun 20 '09 at 10:14
@Charles: What do you mean? – Josh K May 19 '10 at 13:36
6  
I believe he means that anything you added to the stage with git add would also get discarded. The question is asking for "unstaged". – chrishomer Jul 28 '10 at 20:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.