Created
March 12, 2010 11:47
-
-
Save haplo/330253 to your computer and use it in GitHub Desktop.
Nice git prompt for bash
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_dirty { | |
[[ $(git status 2> /dev/null | tail -n1) != "nothing to commit (working directory clean)" ]] && echo "*" | |
} | |
function parse_git_branch { | |
ref=$(git symbolic-ref HEAD 2> /dev/null) || return | |
echo " ("$(parse_git_dirty)${ref#refs/heads/}")" | |
} | |
BLUE="\[\033[1;34m\]" | |
RED="\[\033[0;31m\]" | |
YELLOW="\[\033[0;33m\]" | |
GREEN="\[\033[0;32m\]" | |
# Comment in the above and uncomment this below for a color prompt | |
PS1="${debian_chroot:+($debian_chroot)}$RED\u@\h\[\033[00m\]:$GREEN\w$YELLOW\$(parse_git_branch)\[\033[00m\]\$ " |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Muy interesante Haplo! agregado a mi
~/.bashrc
gracias por compartirlo!