git log search tricks

# check pointed auther commit
git log --author="Author Name"

# check pointed period commit
git log --since="2012-2-23" --before="2012-2-24"

# search in commit messages
git log --grep="key word"

# check commit on branch not master
git log branch --not master

# check pointed "string" in some commit
git log -S "string"
原文地址:https://www.cnblogs.com/aqing1987/p/5395293.html