Created
March 8, 2013 14:37
-
-
Save jimothyGator/5116840 to your computer and use it in GitHub Desktop.
Display current Git branch and root directory in Mac OS X Terminal title bar.
This file contains hidden or 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
# Add to .bash_profile | |
parse_git_branch() { | |
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/' | |
} | |
get_git_root() { | |
basename $(git rev-parse --show-toplevel 2> /dev/null) 2> /dev/null | |
} | |
update_git_prompt() | |
{ | |
GIT_BRANCH=$(parse_git_branch) | |
if [ -n "$GIT_BRANCH" ]; then | |
GIT_ROOT=$(get_git_root) | |
echo -ne "\033]0;$(get_git_root): $(parse_git_branch)\007" | |
else | |
echo -ne "\033]0;\007" | |
fi | |
} | |
PROMPT_COMMAND="update_git_prompt; $PROMPT_COMMAND" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Works also on Linux. Must have for multi-project environment.