Skip to content

Instantly share code, notes, and snippets.

@murphybytes
Created June 4, 2018 01:24
Show Gist options
  • Save murphybytes/1e13506245c3713056ecf9d0339e5397 to your computer and use it in GitHub Desktop.
Save murphybytes/1e13506245c3713056ecf9d0339e5397 to your computer and use it in GitHub Desktop.
git coloring for terminal
function parse_git_branch {
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ \[\1\]/'
}
function proml {
local BLUE="\[\033[0;34m\]"
local LIGHT_GREEN="\[\033[1;32m\]"
local DEFAULT="\[\033[0m\]"
PS1="\h:\W \u$LIGHT_GREEN\$(parse_git_branch) $DEFAULT\$ "
}
proml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment