Last active
June 19, 2018 06:44
-
-
Save julienV/f933f9bd83defd05954d29983b33e79c to your computer and use it in GitHub Desktop.
git list last commits per branch
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
slog = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit | |
rlog = log --pretty=format:' * %d %s' --abbrev-commit | |
lastcommits = for-each-ref --sort=-committerdate refs/heads/ --format='%(committerdate:short) %(authorname) %(refname)' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment