1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-30 23:15:23 +02:00

git-clean: add -fd option

This commit is contained in:
Jibran Kalia 2018-07-05 14:16:35 -05:00 committed by Agniva De Sarker
parent 775417eb0c
commit 30ad96e27a

View file

@ -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`