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         
        
Easy way:
git ls-files --deleted | xargs git add to stage them. They will be removed in the remote once you push.Git way: Referencing what @CpILL said (https://stackoverflow.com/a/34889424/6538751) use
find . -name 'DeleteMe*.cs' -exec git rm {} \;you can utilize wildcards.