Skip to content

Instantly share code, notes, and snippets.

@itelo
Created February 13, 2016 18:26
Show Gist options
  • Save itelo/d1978eb235d3480b1cbd to your computer and use it in GitHub Desktop.
Save itelo/d1978eb235d3480b1cbd to your computer and use it in GitHub Desktop.
PS1 with git branch
[[ $- != *i* ]] && return
function parse_git_branch {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
PS1="[@\u \W]\$\[\e[1;32m\]\$(parse_git_branch)\[\e[0m\]"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment