Created
September 23, 2014 20:56
-
-
Save dep-deprecated/c66743742377e433933b to your computer and use it in GitHub Desktop.
Put your git branch in your prompt (.bash_profile)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Forked it: https://gist.github.com/wieczorek1990/af7e53e89c1057456721