From 9f98d84e7bb0053899fd756a64e87e580071221a Mon Sep 17 00:00:00 2001 From: lhark Date: Mon, 1 Apr 2019 14:31:49 -0400 Subject: [PATCH] [git] Use a more precise date format for lga alias --- gitconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitconfig b/gitconfig index 75f5746..d362a38 100644 --- a/gitconfig +++ b/gitconfig @@ -30,7 +30,7 @@ # 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 + 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)(%ai)%C(reset) - %C(white)%s%C(reset)' --all # Same but also list modified files lf = log --oneline --name-status --all --graph --decorate --color