mirror of
https://github.com/sahinakkaya/til.git
synced 2025-07-05 19:49:41 +03:00
178 B
178 B
You can remove untracked files with git-clean
.
# Show which files will be removed
git clean -nd
# remove the files
git clean -f
# remove interactively
git clean -i