How do you delete untracked files from your git working copy?
|
If you want to also remove directories, run If you just want to remove ignored files, run If you want to remove ignored as well as non-ignored files, run Note the case difference on the Unless you specify Note that as of git-1.6.0, the dashed style of writing git commands (ie, See the |
|||||||||||||||||||||
|
|
|
||||
|
|
|
"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 |
|||
|
|
|
If untracked directory is a git repository of its own (e.g. submodule), you need to use
|
|||
|
|