git log

This one is pretty straightforward, so not much magic here at the moment. One handy flag you can use is --oneline, which will make this easier to read quickly.

git log --oneline

Another thing you can do with git log is to show the log of changes associated with only a certain file(s) or folder(s):

git log --oneline some-folder another-folder
git log my-interesting-file.go