PR을 날릴때, 본인이 무엇을 했는지 적어야 하는데 이떄 내가 commit한 메세지를 살펴보면 자세히 알 수 있다.
git log
하지만 이는 author, Date, commit number 등을 보여주므로 commit 메세지만 보고 싶을 때는 적절하지 않다.
git log --oneline

이런식으로 깔끔하게 commit message 만 보여주므로 좋다.
git log --pretty=format:"%s"
git log --author="작성자 이름" --pretty=format:"%s"
git log -n --oneline
git log --all --oneline