Skip to content

Instantly share code, notes, and snippets.

@dep-deprecated
Created September 23, 2014 20:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dep-deprecated/c66743742377e433933b to your computer and use it in GitHub Desktop.
Save dep-deprecated/c66743742377e433933b to your computer and use it in GitHub Desktop.
Put your git branch in your prompt (.bash_profile)
function parse_git_branch {
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
PS1="${TITLEBAR}\
$WHITE[$LIGHT_GRAY\w$GREEN\$(parse_git_branch)$WHITE]\
$GREEN\$ "
PS2='> '
PS4='+ '
}
proml
@wieczorek1990
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment