Run the command multiple times
git checkout -- path/to/file/one
git checkout -- path/to/file/two
Or specify the multiple files in the same line:
git checkout -- path/to/file/one path/to/file/two
You can also specify entire folders which will recurse to all files below them.
git checkout -- path/to/folder
git checkout -- . # for the current path