mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-10 17:13:50 +02:00
Add git clean -f, -x options
This commit is contained in:
parent
18b9f11a29
commit
100320e3a6
1 changed files with 8 additions and 0 deletions
|
@ -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`
|
||||
|
|
Loading…
Add table
Reference in a new issue