Created
March 24, 2015 20:22
-
-
Save theevocater/6975ab62afa28df5c9b8 to your computer and use it in GitHub Desktop.
load git stuff osx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# load git completion | |
# we can depend on git-completion locally | |
if [[ -f $(brew --prefix)/etc/git-completion.bash ]] ; then | |
. $(brew --prefix)/etc/git-completion.bash | |
fi | |
# load these separately because git-prompt was introduced with git-1.8 | |
if [[ -s $(brew --prefix)/etc/git-prompt.sh ]] ; then | |
. $(brew --prefix)/etc/git-prompt.sh | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment