summaryrefslogtreecommitdiff
path: root/.zsh/zshenv
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2021-01-27 12:13:13 +0100
committerTobias Klauser <tklauser@distanz.ch>2021-01-27 12:13:13 +0100
commitf5ef3b655fba159370c4794f200c468ffff6adbd (patch)
treef5d8eb693a34d11bbb75e6c103e5cbcb250771ab /.zsh/zshenv
parent80d81ba6b64a723d4167e29681820e7d3cc41e35 (diff)
Remove setting of $GIT_{AUTHOR,COMMITTER}_{EMAIL,NAME}
These are set depending on the gitdir in .gitconfig now which is much easier to configure and less overhead than via zsh profiles.
Diffstat (limited to '.zsh/zshenv')
-rw-r--r--.zsh/zshenv/60_git15
1 files changed, 0 insertions, 15 deletions
diff --git a/.zsh/zshenv/60_git b/.zsh/zshenv/60_git
deleted file mode 100644
index bd9a855..0000000
--- a/.zsh/zshenv/60_git
+++ /dev/null
@@ -1,15 +0,0 @@
-# zshenv/60_git
-#
-# git environment variables
-#
-# Copyright © 2010-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