From b3bd95686dde1fdbef287dc1266bee33f7e9fd11 Mon Sep 17 00:00:00 2001 From: Stefan Gaiselmann Date: Thu, 7 Nov 2024 12:59:45 +0100 Subject: [PATCH] Update dot_gitconfig.tmpl --- dot_gitconfig.tmpl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dot_gitconfig.tmpl b/dot_gitconfig.tmpl index fda23ab..7602684 100644 --- a/dot_gitconfig.tmpl +++ b/dot_gitconfig.tmpl @@ -47,6 +47,8 @@ ld = log --pretty=format:"%C(yellow)%h\\ %C(green)%ad%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --date=short --graph ls = log --pretty=format:"%C(green)%h\\ %C(yellow)[%ad]%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --date=relative lstat = log --name-status + # print 'log hints', if using commit messages like "(test): Adjusted test classes" + loghints = ! git log --oneline | awk -F '(' '/^.{8}\(.*/ {print $2}' | awk -F ')' '{print $1}' | sort | uniq -c # initial push puu = push -u origin @@ -93,7 +95,7 @@ st = stash list --date=local - alias = ! git config --get-regexp ^alias\\. | sed -e s/^alias\\.// -e s/\\ /\\ =\\ / + alias = ! git config --get-regexp ^alias\\. | sed -e s/^alias\\.// -e s/\\ /\\ =\\ / | sort d = diff -w dc = diff -w --cached