aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2020-09-07 15:18:34 +0200
committerKatharina Fey <kookie@spacekookie.de>2020-09-07 15:43:26 +0200
commitf3f40b4b1ee0af3cea5926d04bab7d097d47833f (patch)
treece13d3310979a59c558bd4e641e7375b13ad8bea
parent880bc0f8c1c70c65fd97d722a81d834ce43fbcd4 (diff)
Adding git config
-rw-r--r--modules/workstation/devel/.gitconfig19
1 files changed, 19 insertions, 0 deletions
diff --git a/modules/workstation/devel/.gitconfig b/modules/workstation/devel/.gitconfig
new file mode 100644
index 00000000000..473e166c016
--- /dev/null
+++ b/modules/workstation/devel/.gitconfig
@@ -0,0 +1,19 @@
+[user]
+ email = kookie@spacekookie.de
+ name = Katharina Fey
+ signingKey = 555F2E4B6F87F91A4110669E90734A9E619C8A6C
+[gpg]
+ program = gpg2
+[commit]
+ gpgsign = false
+[alias]
+ prettylog = log --pretty=format:'%Cred%h%Creset - %Cgreen(%cr)%Creset%C(yellow)%d%Creset %s %C(bold blue)<%an>%Creset' --abbrev-commit --graph
+ update = pull --rebase --autostash
+ nmam = "!f() { git am -; }; f"
+ nmam3 = "!f() { notmuch show --format=raw $1 | git am -3 -; }; f"
+[help]
+ autocorrect = 1
+[sendemail]
+ smtpServer = /home/.nix-profile/bin/msmtp
+[merge]
+ renamelimit = 9999999