Skip to content

Instantly share code, notes, and snippets.

@culttm
Created September 14, 2016 14:32
Show Gist options
  • Select an option

  • Save culttm/90c1190ffd2910cdf1304bc5424ed2ba to your computer and use it in GitHub Desktop.

Select an option

Save culttm/90c1190ffd2910cdf1304bc5424ed2ba to your computer and use it in GitHub Desktop.
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
export PS1="\[\033[01;31m\]\u\[\033[01;33m\]@\[\033[01;36m\]\h \[\033[32m\]\w\[\033[33m\]\$(parse_git_branch)\[\033[00m\] $ "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment