Skip to content

Instantly share code, notes, and snippets.

@lukexi
Created October 26, 2012 04:55
Show Gist options
  • Save lukexi/3956874 to your computer and use it in GitHub Desktop.
Save lukexi/3956874 to your computer and use it in GitHub Desktop.
git config
cd ~
curl https://github.com/git/git/raw/master/contrib/completion/git-completion.bash -OL
curl https://github.com/git/git/raw/master/contrib/completion/git-prompt.sh -OL
mv git-completion.bash .git-completion.bash
mv git-prompt.sh .git-prompt.sh
#in .profile:
source ~/.git-completion.bash
source ~/.git-prompt.sh
GIT_PS1_SHOWDIRTYSTATE=true
GIT_PS1_SHOWUPSTREAM="auto"
PS1='\[\033[32m\]\u@\h\[\033[00m\]:\[\033[34m\]\w\[\033[31m\]$(__git_ps1)\[\033[00m\]\$ '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment