vote up 14 vote down star
6

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?

flag

6 Answers

vote up 9 vote down check

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|flag
vote up 10 vote down
git checkout path/to/file/to/revert
link|flag
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
git checkout -- . – Charles Bailey Jun 20 at 10:14
vote up 0 vote down
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|flag
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 at 10:22
vote up 1 vote down

@Ben Collins:

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

link|flag
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
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 at 10:21
vote up 0 vote down

git reset --hard

link|flag
This will throw away changes added to the index as well. – Charles Bailey Jun 20 at 10:14
vote up 2 vote down

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|flag

Your Answer

Get an OpenID
or

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