Often during a commit ($ git -commit -m \"\"), I wish to read my last comment to remember what progress I have made. Is there an easy way to directly access the
$ git -commit -m \"\"
git log -1 will display the latest commit message or git log -1 --oneline if you only want the sha1 and associated commit message to be displayed.
git log -1
git log -1 --oneline