How can I clear my working directory in git?

link|improve this question

If I were able, I would vote twice here :) – Sly Dec 21 '11 at 13:28
feedback

3 Answers

up vote 113 down vote accepted

To reset a specific file to the last-committed state (to discard uncommitted changes in a specific file):

git checkout thefiletoreset.txt

This is mentioned in the git status output:

(use "git checkout -- <file>..." to discard changes in working directory)

To reset the entire repository to the last committed state:

git reset --hard

To remove untracked files, I usually just delete all files in the working copy (but not the .git/ folder!), then do git reset --hard which leaves it with only committed files.

A better way is to use git clean

git clean -d -x -n

..will remove untracked files, including directories (-d) and files ignored by git (-x). You replace the -f force argument with -n to perform a dry-run and it will tell you what will be removed.

Relevant links:

link|improve this answer
2  
Note that by default, 'git clean -d' is insufficient. You need to also add the -f (force) flag. Also, if you want to additionally delete the files that are ignored by .gitignore, then you need to add the -x option. Here's what it all looks like: git clean -xdf – Matt Ball Apr 6 '11 at 15:05
I think you mean "working directory" instead of "repository" in the sentence "I usually just delete all files in the repository". – Dr. Person Person II Jun 7 '11 at 11:45
@Dr. Person Good point, that is clearer, edited – dbr Jun 8 '11 at 13:58
1  
However be sure to NOTE that command will also blow away your local sqlite database -- not undo recent changes, but actually delete it. Sp the "-x" option might NOT ne a good idea depending on what you are trying to do. – jpwynn Apr 2 at 0:54
feedback
git clean -xdf

Edit: It's not well advertised but git clean is really handy. Git Ready has a nice intro to git clean.

link|improve this answer
feedback

What do you mean with "clear"?

rm -rf

Or do you want to reset your working copy to the latest repository version?

git reset --hard
link|improve this answer
1  
The remove command still leaves hidden files and directories. But I think they wanted your later solution. – Dr. Person Person II Jun 7 '11 at 11:53
feedback

Your Answer

 
or
required, but never shown

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