Remove untracked files from the working tree
Step 1 is to show what will be deleted by using the
-n
option:git clean -f -n
Clean Step - beware: this will delete files:
git clean -f
- To remove directories, run
git clean -f -d
orgit clean -fd
- To remove ignored files, run
git clean -f -X
orgit clean -fX
- To remove ignored and non-ignored files, run
git clean -f -x
orgit clean -fx
Note the case difference on the
X
for the two latter commands.
If
clean.requireForce
is set to "true" (the default) in your configuration, one needs to specify -f
otherwise nothing will actually happen.
Again see the
git-clean
docs for more information.
------------------------------------------------------------------------------
No comments:
Post a Comment