Skip to content

Instantly share code, notes, and snippets.

@rbecheras
Last active March 28, 2018 08:12
Show Gist options
  • Save rbecheras/53515c1b4e492fd45093c3727b88bf2c to your computer and use it in GitHub Desktop.
Save rbecheras/53515c1b4e492fd45093c3727b88bf2c to your computer and use it in GitHub Desktop.
A bashrc snipet to set colored prompt with git branch
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

Screenshot example

Imgur

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