git/github
[git] 삭제한 파일들 다수를 commit 하는 방법
용식
2012. 11. 6. 23:34
http://stackoverflow.com/questions/1856654/git-how-to-add-commit-removals-made-via-vanilla-rm
Without spaces in filenames:
$ git rm `git ls-files -d`
More robust:
$ git ls-files -z -d | xargs -0 git rm