summaryrefslogtreecommitdiff
path: root/.zsh
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2012-11-20 10:52:17 +0100
committerTobias Klauser <tklauser@distanz.ch>2012-11-20 10:52:17 +0100
commit56ecabe9926175441772c25a91f03584a7a8970f (patch)
tree8709dcad0154b4f42c9aa33571937d51583e1c26 /.zsh
parent69a34c5c5ecf25513d9780d622f734be9f0ff620 (diff)
Add git env variables
Diffstat (limited to '.zsh')
-rw-r--r--.zsh/zshenv/60_git15
1 files changed, 15 insertions, 0 deletions
diff --git a/.zsh/zshenv/60_git b/.zsh/zshenv/60_git
new file mode 100644
index 0000000..09a3084
--- /dev/null
+++ b/.zsh/zshenv/60_git
@@ -0,0 +1,15 @@
+# zshenv/60_git
+#
+# git environment variables
+#
+# Copyright © 2012 Tobias Klauser <tklauser@distanz.ch>
+# Released under the terms of the Artistic Licence 2.0
+#
+# Source repository: git://git.distanz.ch/dotfiles/zsh.git
+
+export GIT_AUTHOR_NAME="Tobias Klauser"
+export GIT_AUTHOR_EMAIL="tklauser@distanz.ch"
+export GIT_COMMITTER_NAME="$GIT_AUTHOR_NAME"
+export GIT_COMMITTER_EMAIL="$GIT_AUTHOR_EMAIL"
+
+# vim:ft=zsh