Skip to content

Instantly share code, notes, and snippets.

@DavidBindloss
Created May 17, 2018 23:45
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 DavidBindloss/ebebc628fc6f8f5d123b8c3acca476f2 to your computer and use it in GitHub Desktop.
Save DavidBindloss/ebebc628fc6f8f5d123b8c3acca476f2 to your computer and use it in GitHub Desktop.
$PS1 - bash command prompt
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/'
}
# Color the hostname
c="\[\033[01;38;5;034m\]> "
LC="\[\033[0m\]"
export PS1="\$(parse_git_branch) ${c}${LC}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment