Show logs with file differences(we can add number of the commit which we want to see like -1,-2): git log -p
Show logs with addition and deletion in a particular commit: git log --stat
Show commits in one line: git log --pretty=oneline
Show commit in short form: git log --pretty=short
Show log from last two days: git log --since=2.days
Show logs in pattern(like hashCode — autherName): git log --pretty=format:"%h -- %an"