From 60d40cddfb13fe8695cb37949241ad47ab092684 Mon Sep 17 00:00:00 2001 From: Nick Nisi Date: Thu, 30 Jan 2014 10:15:53 -0600 Subject: [PATCH] updating git log graph alias --- git/gitconfig.symlink | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/git/gitconfig.symlink b/git/gitconfig.symlink index 61285ab..f20890f 100644 --- a/git/gitconfig.symlink +++ b/git/gitconfig.symlink @@ -19,9 +19,7 @@ br = branch -v brt = "!sh -c gbrt" # show a pretty log graph - lg = log --graph --pretty=oneline --abbrev-commit --decorate - # slight variation of pretty log graph - l = log --graph --pretty=format:'%Cred%h%Creset %an: %s - %Creset %C(yellow)%d%Creset %Cgreen(%cr)%Creset' --abbrev-commit --date=relative + lg = log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all # list all aliases la = "!git config -l | grep alias | cut -c 7-" # show files that have changed between two branches (git dbr master..branch)