Created
March 27, 2018 11:34
-
-
Save jdmichaud/ba8db3bc59c2855a6a0cde5d21997771 to your computer and use it in GitHub Desktop.
git log goodness
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git log --oneline --decorate --all --graph --stat | |
| git log --oneline --decorate --all --graph --simplify-by-decoration | |
| --oneline: resume each log to one line | |
| --decorate: add branch/tag information | |
| --all: include all branches | |
| --graph: add a branching graph tree | |
| --stat: list files for each commit | |
| --simplify-by-decoration: show only signification commits (branches) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment