From d236594659f56173e958c49fd5b1010bfabc633f Mon Sep 17 00:00:00 2001 From: "Stefan Gaiselmann (centos8)" Date: Fri, 23 Oct 2020 13:34:08 +0200 Subject: [PATCH] Added gitconfig template. --- dot_gitconfig.tmpl | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 dot_gitconfig.tmpl diff --git a/dot_gitconfig.tmpl b/dot_gitconfig.tmpl new file mode 100644 index 0000000..71e1924 --- /dev/null +++ b/dot_gitconfig.tmpl @@ -0,0 +1,14 @@ +# This is Git's per-user configuration file. +[user] +# Please adapt and uncomment the following lines: + name = {{ .name }} + email = {{ .email }} + +[alias] + graph = log --graph --pretty=format:'%Cred%h %Creset-%C(yellow)%d%Creset %s %Cgreen(%cd) %C(blue)<%an>%Creset' --abbrev-commit --date=relative -30 + + +[core] + editor = vim + +