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

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

share|improve this question
6  
Considering the traffic to this question, it seems worth clarifying what a "working copy" is. Google wasn't cutting it, so from Peepcode's Git Internals... "working directory is the checkout of the current branch you are working on... Git will make your working directory look like that branch, removing any checked in content that is currently in your working directory that is not in the new tree. [This is why all changes must be committed before switching branches -AG]. Your working directory is just a copy of a tree so you can edit it and commit changes" – alex gray Oct 24 '12 at 21:29
This interactive git cheat sheet ndpsoftware.com/git-cheatsheet.html shows the git workspace (google gives you better results with "workspace" than "working copy"). – qneill Feb 1 at 15:43

5 Answers

up vote 1042 down vote accepted
git clean -f

If you want to also remove directories, run git clean -f -d.

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.

See the git-clean docs for more information.

share|improve this answer
5  
This deletes all the hard copies in a post. – SinisterRainbow Apr 11 '12 at 20:11
185  
Prevent sudden cardiac arrest with -n. – faraz Apr 30 '12 at 10:46
1  
@faraz: what does -n do? – amindfv Mar 1 at 1:59
3  
@amindfv it does a dry run – engineerDave Mar 1 at 14:42
6  
git clean -f works only in the directory where it's called (and subdirectories). If you want to clean the whole working copy, you should call it in its root directory. – Eduardo Bezerra Mar 8 at 10:51
show 4 more comments

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

share|improve this answer

"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

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

If untracked directory is a git repository of its own (e.g. submodule), you need to use -f twice:

git clean -d -f -f

share|improve this answer

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.