VOOZH about

URL: https://www.javacodegeeks.com/2014/02/git-zshell-colorize-your-shell-depending-on-your-branch.html

⇱ GIT & ZShell : Colorize your shell depending on your branch


As announced in my last post I asked my colleague Tillman if I’m allowed to post his nice extension for the zshell (as you may have concluded he gives his OK! ).

And here it is:
 
 
 
 
 
 
 

# Required to have the colour names
autoload colors zsh/terminfo
if [[ "$terminfo[colors]" -ge 8 ]]; then
 colors
fi
for color in RED GREEN YELLOW BLUE MAGENTA CYAN WHITE; do
 eval PR_$color='%{$terminfo[bold]$fg[${(L)color}]%}'
 eval PR_LIGHT_$color='%{$fg[${(L)color}]%}'
 (( count = $count + 1 ))
done
PR_NO_COLOUR="%{$terminfo[sgr0]%}"
 
# Thanks Tillman
function get_color(){
BRANCH=`git rev-parse --abbrev-ref HEAD`
case "$BRANCH" in
*master*) COLOR=${PR_RED} ;;
*hotfix*) COLOR=${PR_MAGENTA} ;;
*release-candidate*) COLOR=${PR_YELLOW} ;;
*release*) COLOR=${PR_YELLOW} ;;
*bugfix*) COLOR=${PR_CYAN} ;;
*develop*) COLOR=${PR_BLUE} ;;
*) COLOR=${PR_GREEN} ;;
esac
echo $COLOR
}

The color mapping is the same as in these graphic

šŸ‘ branch-to-profile-mapping

Branch to Environment / Profile mapping

Applying can be done, for example, when adding this git status helper and refine it with the get_color function.

function git_status () {
 local output
 gs=$(git status 2> /dev/null)
 if [[ $? == 128 ]]; then
 return
 fi
 ref=$(git symbolic-ref HEAD 2> /dev/null) || return
 output=${$(get_color)}" "${ref#refs/heads/}
 if echo "$gs" | grep -q "Changes to be committed"; then
 output=${output}${PR_GREEN}+
 fi
 if echo "$gs" | grep -Eq "(Changes not staged for commit|Changed but not updated)"; then
 output=${output}${PR_RED}!
 fi
 if echo "$gs" | grep -q "Untracked files"; then
 output=${output}${PR_RED}?
 fi 
 echo "${output}${PR_NO_COLOUR}"
}
 
PROMPT=$'%(?,${PR_GREEN}+,${PR_RED}-)${PR_NO_COLOUR} %(4c,./%1~,%~) $(git_status) %(!.${PR_RED}#${PR_NO_COLOUR} .%% )'

At least some examples:

šŸ‘ gitColorizedBranches

 

Do you want to know how to develop your skillset to become a Java Rockstar?
Subscribe to our newsletter to start Rocking right now!
To get you started we give you our best selling eBooks for FREE!
1. JPA Mini Book
2. JVM Troubleshooting Guide
3. JUnit Tutorial for Unit Testing
4. Java Annotations Tutorial
5. Java Interview Questions
6. Spring Interview Questions
7. Android UI Design
and many more ....
I agree to the Terms and Privacy Policy

Thank you!

We will contact you soon.

Tags
Git ZShell
šŸ‘ Photo of Peter Daum
Peter Daum
February 27th, 2014Last Updated: February 27th, 2014
0 91 1 minute read

Peter Daum

Peter is senior Java developer in the telecommunication industry. He works in the area of business and operations support systems and is always happy to share his knowledge and experience. He is interested in everything related to Java and software craftsmanship.
Subscribe

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Oldest
Newest Most Voted
Back to top button
Close
wpDiscuz