Created
January 9, 2014 06:00
-
-
Save lifuzu/8330047 to your computer and use it in GitHub Desktop.
display command line with git branch and remote, and colorful
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
parse_git_branch() { | |
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/' | |
} | |
parse_git_remote() { | |
git for-each-ref --format='%(upstream:short)' $(git symbolic-ref -q HEAD 2> /dev/null) 2> /dev/null | |
} | |
render_git_info() { | |
branch=$(parse_git_branch) | |
if [ $branch ]; then | |
echo "($(parse_git_remote)->$(parse_git_branch))" | |
fi | |
} | |
PS1="${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\[\033[01;33m\]\$(render_git_info)\[\033[00m\]$ " |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment