how to get commit log of github repo code example
Example 1: git log one line
git log --oneline
Example 2: git how to see changes made by a commit
git show <commit sha1> # Notice that the default option is HEAD.
git log --oneline
git show <commit sha1> # Notice that the default option is HEAD.