Help!
git help logShows the list of commits (the most recent commits show up first)
git logShows the list of commits and the abbreviated stats
git log --statShows the list of commits and the diff
git log -pSame as above but limits the output to -n entries (2 in this example)
git log -p -2Shows the list of commits on a single line
git log --pretty=onelineShows the list of formatted commits
git log --pretty=format:"%h - %an, %ar : %s"Shows the list of formatted commits and a graph
git log --pretty=format:"%h %s" --graphShows all commits where commit message contains a given word
git log -p --grep=word_to_find
thanks bro