Last active
March 28, 2018 08:12
-
-
Save rbecheras/53515c1b4e492fd45093c3727b88bf2c to your computer and use it in GitHub Desktop.
A bashrc snipet to set colored prompt with git branch
This file contains 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
if [ "$color_prompt" = yes ]; then | |
prompt | |
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]:\[\033[01;33m\]$(git branch 2>/dev/null | grep '^*' | colrm 1 2)\[\033[00m\]\$ ' | |
else | |
export PS1="\\w:\$(git branch 2>/dev/null | grep '^*' | colrm 1 2)\$ " | |
fi | |
unset color_prompt force_color_prompt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment