From 9bc5d9771344b642259f3059d47d730602a92d64 Mon Sep 17 00:00:00 2001 From: Heavy Date: Thu, 7 Nov 2024 13:03:21 +0100 Subject: [PATCH] (git): Adjust wrong alias in .gitconfig. --- dot_gitconfig.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dot_gitconfig.tmpl b/dot_gitconfig.tmpl index 7602684..99be190 100644 --- a/dot_gitconfig.tmpl +++ b/dot_gitconfig.tmpl @@ -48,7 +48,7 @@ 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 + loghints = ! git log --oneline | awk -F '(' '/^.{8}\\(.*/ {print $2}' | awk -F ')' '{print $1}' | sort | uniq -c # initial push puu = push -u origin