Skip to content

Instantly share code, notes, and snippets.

@ckarnell
Created October 5, 2017 16:03
Show Gist options
  • Save ckarnell/f09c24fe120fadf5568c492c6e0d88fa to your computer and use it in GitHub Desktop.
Save ckarnell/f09c24fe120fadf5568c492c6e0d88fa to your computer and use it in GitHub Desktop.
# 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