This website requires JavaScript.
Explore
Help
Register
Sign in
lilith
/
tldr
Watch
1
Star
0
Fork
You've already forked tldr
0
mirror of
https://github.com/tldr-pages/tldr.git
synced
2025-04-29 23:24:55 +02:00
Code
Activity
18b9f11a29
Branches
Tags
No results found.
tldr
/
pages
/
common
/
git-clean.md
Eliot Sykes
18b9f11a29
git-clean: add page
2017-04-21 00:33:36 +05:30
286 B
Raw
Blame
History
git clean
Remove untracked files from the working tree.
Delete files that are not tracked by git:
git clean
Interactively delete files that are not tracked by git:
git clean -i
Shows what files would be deleted without actually deleting them:
git clean --dry-run