- Published
- Author
- Iffyuva
In order to delete untracked files, I use this
for f in $(git ls-files . --exclude-standard --others); do rm $f; done. Is there any simpler version?