Git: Easily Remove Multiple Files After DeletionAugust 19, 2013I almost always forget to git rm <file> before deleting it. Here's a quick way to pull deleted files from a Git repository and remove them: git rm $(git ls-files --deleted)