I want to revert a file to its state on its last commit.
I have modified, added and committed other files. But there is that one file that I didn't stage.
I want to revert it's state (only the state of that file) to the last commit that that file was committed.
In other words, I just want to ignore the last changes made to that file and restore it to the last point it participated in a commit.
git checkout commit-hash -- file?HEAD, but also suggested that you could take the current staged version—which Git staged on its own when Git extracted the commit you're working on—which is what glco's answer does.