Git Log Command Wed Jul 26 2017 Some usefull “git log” commands. From here. 12345678# 1. Output git log with the first line only.git log --pretty=oneline --abbrev-commit# 2. Output the recent N log items.git log -n 5# Output log items in the given time period.git log --pretty=oneline --abbrev-commit --after 2017-07-25 --before 2017-07-26