Skip to content

Instantly share code, notes, and snippets.

@taniarascia
Created March 9, 2018 18:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save taniarascia/2f699db8e743cf7fc589c523494e6ef9 to your computer and use it in GitHub Desktop.
Save taniarascia/2f699db8e743cf7fc589c523494e6ef9 to your computer and use it in GitHub Desktop.
Show current Git branch and colors in terminal
export CLICOLOR=1
export LSCOLORS=ExFxBxDxCxegedabagacad
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
export PS1="\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\$(parse_git_branch)\[\033[m\]\$ "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment