Skip to content

Instantly share code, notes, and snippets.

@jdmichaud
Created March 27, 2018 11:34
Show Gist options
  • Select an option

  • Save jdmichaud/ba8db3bc59c2855a6a0cde5d21997771 to your computer and use it in GitHub Desktop.

Select an option

Save jdmichaud/ba8db3bc59c2855a6a0cde5d21997771 to your computer and use it in GitHub Desktop.
git log goodness
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