Git auto complete is a convenient feature.
This feature is based on git-completion file comes with git.
On OS X, if you install git via homebrew, you can find git source directory using:
locate git | grep Cellar
Locate the git-completion file.
In my case, it is `/usr/local/Cellar/git/1.7.5/etc/bash_completion.d/git-completion.bash
Open this file and you will find this explanation:
The contained completion routines provide support for completing:
And the steps to enable this
source ~/.git-completion.sh
to your .bashrcPS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ '
If you want some color in git prompt
PS1='\[\033[32m\]\u@\h\[\033[00m\]:\[\033[34m\]\w\[\033[31m\]$(__git_ps1)\[\033[00m\]\$ '
If you want the prompt to show git-ps1 state
GIT_PS1_SHOWDIRTYSTATE=true
Generating Site with Jekyllbe rake generate
Example:
zlu@zlu-mba:~/projects/me/octopress (master *)