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