From 9eb3fc4a5656b355c11800de9138bf2e569e3b8d Mon Sep 17 00:00:00 2001 From: Goulven Kermarec Date: Thu, 17 May 2018 13:28:27 -0400 Subject: [PATCH] [gitconfig] Add new aliases --- gitconfig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gitconfig b/gitconfig index 64fc3ed..75f5746 100644 --- a/gitconfig +++ b/gitconfig @@ -29,5 +29,10 @@ # Pretty branch graph lg = log --oneline --abbrev-commit --all --graph --decorate --color + # Graph with additional info (author, date) + lga = log --graph --abbrev-commit --decorate --format=format:'%C(yellow)%h%C(reset) %C(bold red)%d%C(reset) %C(blue)[%an]%C(reset) %C(green)(%ar)%C(reset) - %C(white)%s%C(reset)' --all # Same but also list modified files lf = log --oneline --name-status --all --graph --decorate --color + + # pull rebase + prb = pull --rebase