Revisions

gist: 151479 Download_button fork
public
Public Clone URL: git://gist.github.com/151479.git
Embed All Files: show embed
.profile #
1
2
3
4
5
6
7
8
GREEN="\[\033[0;32m\]"
NC='\e[0m'
 
function parse_git_branch {
  git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1) /'
}
 
PS1="\W$NC $GREEN\$(parse_git_branch)$NC$ "