Last Updated: February 25, 2016
·
544
· gmjorge

Remove deleted files on Git

just execute

$ git ls-files --deleted | xargs -0 git rm

Then you can make a commit

$ git commit -m 'Deleted some files'