up vote 113 down vote favorite
20
share [g+] share [fb]

How do you delete untracked files from your git working copy?

link|improve this question

feedback

4 Answers

up vote 77 down vote accepted

git-clean - Remove untracked files from the working tree

link|improve this answer
3  
Additional note : as this link refers to the attacked website, this link don't work no more. Instead use : linux.die.net/man/1/git-clean – Mouha Nov 3 '11 at 14:03
Or simply run git help clean. – Shamaoke yesterday
feedback
git clean -f

If you just want to remove ignored files, run git clean -f -X.
If you want to remove ignored as well as non-ignored files, run git clean -f -x.
Note the case difference on the X for the two latter commands.

Unless you specify -f and clean.requireForce is set to "true" (the default) in your configuration, nothing will actually happen, with a recent enough version of git.

Note that as of git-1.6.0, the dashed style of writing git commands (ie, git-clean instead of git clean) is obsoleted.

link|improve this answer
feedback

git clean -f -d to be sure that also directories are gone! you can check with git status if they are really gone.

link|improve this answer
feedback

"git-clean" is what you are looking for. It is used to remove untracked files from the working tree:

http://www.kernel.org/pub/software/scm/git/docs/git-clean.html

link|improve this answer
same comment as previous : linux.die.net/man/1/git-clean – Mouha Nov 3 '11 at 14:04
feedback

Your Answer

 
or
required, but never shown

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