git ls-files --deleted -z | xargs -0 git rm
http://stackoverflow.com/questions/492558/removing-multiple-files-from-a-git-repo-that-have-already-been-deleted-from-disk
Tham số -z gộp list output kiều nhiều dòng về liền nhau. xargs -0 chắc là tham số đầu tiên ám chỉ số 0.
Thường thì m hay dùng
git ls-files --deleted | xargs git rm $1
Ko rõ -z có tác dụng j. "Phải thế nào" thì người ta mới viết zậy chứ.
http://stackoverflow.com/questions/492558/removing-multiple-files-from-a-git-repo-that-have-already-been-deleted-from-disk
Tham số -z gộp list output kiều nhiều dòng về liền nhau. xargs -0 chắc là tham số đầu tiên ám chỉ số 0.
Thường thì m hay dùng
git ls-files --deleted | xargs git rm $1
Ko rõ -z có tác dụng j. "Phải thế nào" thì người ta mới viết zậy chứ.
Comments
Post a Comment