Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
7  
If, like me, you came here looking to selectively discard changes/hunks, you meant to look here: stackoverflow.com/questions/771897/… – thisgeek Jan 27 '11 at 15:55
if your "changes" include added files, read all the answers – nik.shornikov Apr 20 at 20:08

12 Answers

up vote 281 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.

share|improve this answer
31  
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
3  
I like Elvis' answer a lot better of git clean -df – Khalid Abuhakmeh Aug 8 '12 at 17:49
5  
The nice thing about this approach (vs git checkout) is that you can undo the command if you realize later that you made a mistake. If you remember before running git stash drop then you can git stash pop. If you remember after dropping the stash entry, then recovering your changes is more work, but e.g. stackoverflow.com/questions/89332/recover-dropped-stash-in-git describes how you can get your changes back. – Elliott Slaughter Aug 9 '12 at 17:26
git stash fixes most everything :) – Dave Cottrell Aug 23 '12 at 18:21
1  
How about just git checkout -f? – huggie Oct 17 '12 at 14:56
show 3 more comments

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.

share|improve this answer
37  
git checkout -- . – Charles Bailey Jun 20 '09 at 10:14
39  
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
6  
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
4  
@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
11  
@PartlyCloudy The double-dash indicates that file paths are listed, not branch names. For "." it's not needed as git can figure out that it's not a branch name. – ergosys Mar 10 '12 at 21:07
show 4 more comments

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
share|improve this answer

It looks that complete solution is:

git clean -df & git checkout -- .

git clean removes all untracked files and git checkout clears all unstaged changes

share|improve this answer
upvoted - this is the complete solution and worked for me. – RichVel Jan 11 at 12:44
1  
In Windows PowerShell, it demands to use this command like git clean -df "&" git checkout -- . (with double quotes around ampersand). The error states: Ampersand not allowed. The & operator is reserved for future use; use "&" to pass ampersand as a string. – vulcan raven May 7 at 10:00
1  
this should be the accepted answer – vangoz May 9 at 7:35
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

share|improve this answer
7  
That works for untracked files but not for unstaged changed files – Macario Mar 14 '12 at 2:27
I found this was good for untracked files, converting a server that had been updated with rsync to use 'git pull' for updates – RichVel Jan 11 at 12:39
4  
Be careful with this; if you are using .gitignore to ignore certain files for purposes of a remote-repo, but are storing them locally for testing purposes, you will lose all of those files with this command; it can be very destructive. – rcd Feb 9 at 1:15

git reset --hard HEAD

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.

share|improve this answer
2  
Warning, this is not an answer to the question! It removes all changes, including the ones that were staged (added to the index). – Martijn Heemels Apr 19 at 14:25
@MartijnHeemels: correct - thx – vol7ron Apr 19 at 18:49

@Ben Collins:

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

share|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
2  
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
1  
"Wouldn’t a simple..." - That's a joke, right? Calling it "simple" I mean? – MikeSchinkel Apr 20 at 19:26
show 1 more comment

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
share|improve this answer
this misses any untracked files, which may be a good thing – flickerfly Dec 22 '11 at 20:00

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.

share|improve this answer
1  
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

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:

  1. If you haven't staged the file, then you use git checkout. Checkout "updates files in the working tree to match the version in the index". If the files have not been staged (aka added to the index)... this command will essentially revert the files to what your last commit was.

    git checkout -- foo.txt

  2. If you have staged the file, then use git reset. Reset changes the index to match a commit.

    git reset -- foo.txt

I suspect that using git stash is a popular choice since it's a little less dangerous. You can always go back to it if you accidently blow too much away when using git reset. Reset is recursive by default.

Take a look at the article above for further advice.

share|improve this answer

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).

share|improve this answer
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.

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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