Skip to content

Instantly share code, notes, and snippets.

@orodio
Created October 22, 2015 04:08
Show Gist options
  • Save orodio/7430753cb9af8a60a4e8 to your computer and use it in GitHub Desktop.
Save orodio/7430753cb9af8a60a4e8 to your computer and use it in GitHub Desktop.
__git_ps1 () {
local b="$(git symbolic-ref HEAD 2>/dev/null)";
if [ -n "$b" ]; then
printf " (%s)" "${b##refs/heads/}";
fi
}
PS1="\[\033[0;35m\]\$(__git_ps1)\[\033[0m\] \[\033[0;33m\]\W\[\033[0m\] \$ "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment