git log file code example
Example 1: git log for specific file
git log -p filename
Example 2: git log one line
git log --oneline
Example 3: git file history
git log --follow -p -- path-to-file
Example 4: git log by author
git log --author="Jon"
Example 5: git log grep
git log --all --grep='Build 0051'