til/git/removing-untracked-files.md

13 lines
182 B
Markdown
Raw Normal View History

2021-08-04 15:21:22 +02:00
You can remove untracked files with `git-clean`.
```bash
2021-08-04 15:21:22 +02:00
# Show which files will be removed
git clean -nd
# remove the files
git clean -f
# remove interactively
git clean -i
```