summaryrefslogtreecommitdiff
path: root/.zsh/zshenv/60_git
blob: bd9a855dc34e08cb5af65537ae088d9533893143 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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