Browse Source

git-clean: add -fd option

Jibran Kalia 6 years ago
parent
commit
30ad96e27a
1 changed files with 4 additions and 0 deletions
  1. 4 0
      pages/common/git-clean.md

+ 4 - 0
pages/common/git-clean.md

@@ -18,6 +18,10 @@
 
 `git clean -f`
 
+- Forcefully delete directories that are not tracked by git:
+
+`git clean -fd`
+
 - Delete untracked files, including ignored files in `.gitignore` and `.git/info/exclude`:
 
 `git clean -x`