Skip to content

Instantly share code, notes, and snippets.

@hannestyden
Created September 16, 2008 09:33
Show Gist options
  • Save hannestyden/11009 to your computer and use it in GitHub Desktop.
Save hannestyden/11009 to your computer and use it in GitHub Desktop.
# Lots of colors
export PS1='\[\033[00;32m\]\u\[\033[01m\]@\[\033[00;36m\]\h\[\033[01m\]:\[\033[00;35m\]\w\[\033[00m\]\[\033[01;33m\]`git branch 2>/dev/null|cut -f2 -d\* -s`\[\033[00m\]\$ '
# Branch name colored yellow
export PS1='\u@\h:\w\[\033[00m\]\[\033[01;33m\]`git branch 2>/dev/null|cut -f2 -d\* -s`\[\033[00m\]\$ '
# No colors
export PS1='\u@\h:\w`git branch 2>/dev/null|cut -f2 -d\* -s`\$ '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment