author avatar

iffyuva

Thu Jan 03 2019

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?