How do I easily remove several files without manually typing the full paths of all of them to git rm? I have plenty of modified files I\'d like to keep so remov
git rm
For removing multiple files at once, you might want to checkout the answer here
You can delete the files that you don't want and run this command: git rm $(git ls-files --deleted)
git rm $(git ls-files --deleted)