git-log: add graph view (#1275)

This commit is contained in:
Jeef 2017-02-24 02:20:09 -05:00 committed by Agniva De Sarker
parent 87340067fe
commit c63ef4d8d6

View File

@ -14,6 +14,10 @@
`git log --oneline`
- Show all commits, tags and branches for the entire repo in a graph format:
`git log --oneline --decorate --all --graph`
- Show only commits whose messages include a given string (case-insensitively):
`git log -i --grep {{search_string}}`