Created
June 4, 2018 01:24
-
-
Save murphybytes/1e13506245c3713056ecf9d0339e5397 to your computer and use it in GitHub Desktop.
git coloring for terminal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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