dots/zsh/git
2008-12-23 21:38:35 -05:00

19 lines
452 B
Text
Executable file

if [[ -d /usr/local/git/man ]] ; then
if [[ -z "${MANPATH}" ]] ; then
export MANPATH="/usr/local/git/man":$(manpath)
else
export MANPATH="/usr/local/git/man:${MANPATH}"
fi
fi
if [[ -d /usr/local/git/bin ]] ; then
if [[ -z "${PATH}" ]] ; then
export PATH="/usr/local/git/bin"
else
export PATH="/usr/local/git/bin:${PATH}"
fi
fi
if [[ -d /usr/local/git/libexec/git-core ]] ; then
export PATH="/usr/local/git/libexec/git-core:${PATH}"
fi