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 removing all modified is not possible either.
And also it is possible to revert the changes of several files without manually typing git checkout -- /path/to/file?
You can give wildcards to
git rm.e.g.
Or you can just write down the names of all the files in another file, say
filesToRemove.txt:You can automate this:
Open the file and review the names (to make sure it’s alright).
Then:
Or:
Check the manpage for
xargsfor more options (esp. if it’s too many files).