Created
October 5, 2017 16:03
-
-
Save ckarnell/f09c24fe120fadf5568c492c6e0d88fa to your computer and use it in GitHub Desktop.
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
# Fancy git log. 'gl' shows the whole log, 'gl 5' shows the last 5 commits, etc. | |
function gl { | |
if [ -z "$1" ] | |
then | |
git log --graph --pretty=format:'%C(bold blue)%h %C(bold green)(%ar) %C(magenta)%an %Creset%s%C(bold yellow)%d' | |
else | |
git log --graph --pretty=format:'%C(bold blue)%h %C(bold green)(%ar) %C(magenta)%an %Creset%s%C(bold yellow)%d' -$1 | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment