git log by commit message code example
Example 1: search by message git
git log --all --grep='Build 0051'
Example 2: how to see all commits in git
$ git log --pretty=format:"%h - %an, %ar : %s"
ca82a6d - Scott Chacon, 6 years ago : Change version number
085bb3b - Scott Chacon, 6 years ago : Remove unnecessary test
a11bef0 - Scott Chacon, 6 years ago : Initial commit
Example 3: git log by author
git log --author="Jon"