Wednesday, January 14, 2015

Removing files indexed in git index which are deleted by you from your file system

 Just run following command
git ls-files --deleted -z | xargs -0 git rm

No comments:

Post a Comment