1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 13:33:43 +02:00

git-log: show branch graph (#2587)

This commit is contained in:
Larry Lu 2018-11-15 18:21:22 +08:00 committed by Waldir Pimenta
parent 66bef8afb3
commit 92ce13cba4

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`