git-log: show branch graph (#2587)

italian
Larry Lu 2018-11-15 18:21:22 +08:00 committed by Waldir Pimenta
parent 66bef8afb3
commit 92ce13cba4
1 changed files with 5 additions and 1 deletions

View File

@ -18,7 +18,11 @@
`git log --stat`
- Show all commits, tags and branches for the entire repo in a graph format:
- Show a graph of commits in the current branch:
`git log --graph`
- Show a graph of all commits, tags and branches in the entire repo:
`git log --oneline --decorate --all --graph`