Is it possible to use git checkout -- on multiple files in order to discard the changes?
If so how would I specify multiple files?
Use the following command
git checkout path/to/fileName path/to/fileName2 path/to/fileName3
This will allow you to revert or discard your changes to the files fileName, fileName2 and fileName3
Note: that spaces in the path name will cause an issue with git. Use single quotes '' to encase the path name in such cases.