From c030c0ca066e43c5f64bc61c85def66a0faf285d Mon Sep 17 00:00:00 2001 From: Jasper Bok Date: Thu, 2 Jun 2022 18:47:39 +0200 Subject: [PATCH] Add .gitconfig --- dot_gitconfig.tmpl | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 dot_gitconfig.tmpl diff --git a/dot_gitconfig.tmpl b/dot_gitconfig.tmpl new file mode 100644 index 0000000..5276a16 --- /dev/null +++ b/dot_gitconfig.tmpl @@ -0,0 +1,9 @@ +[alias] + s = status + f = fetch + l = log --oneline --decorate --graph --pretty='format:%Cred%h%Creset - %C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' + ll = log --oneline --decorate --graph --pretty='format:%Cred%h%Creset - %C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --all + +[user] + name = {{ .user.name }} + email = {{ .user.email }}