dots/commonsh/10_git
David Majnemer ba2f3cfb85 huge changes and refactoring done:
-   split zsh into many files
-   add bash support
-   cleaned up lots of stuff, created a commonsh folder for common stuff between bash and zsh
-   commonsh supports an order of execution, deliminated by filename. This is to enforce dependencies
All of these changes were needed so that we could sensibly continue to extend the system
2009-01-02 18:37:27 -05:00

22 lines
446 B
Text
Executable file

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