Add git clean -f, -x options

coverage
Eliot Sykes 2016-12-23 09:30:14 +00:00 committed by Agniva De Sarker
parent 18b9f11a29
commit 100320e3a6
1 changed files with 8 additions and 0 deletions

View File

@ -13,3 +13,11 @@
- Shows what files would be deleted without actually deleting them:
`git clean --dry-run`
- Force delete files that are not tracked by git:
`git clean -f`
- Delete untracked files, including ignored files in `.gitignore` and `$GIT_DIR/info/exclude`:
`git clean -x`