Created
February 13, 2015 18:56
-
-
Save manderly/16484e49a2ed26705c22 to your computer and use it in GitHub Desktop.
.bashrc customization to show computer name, current directory path, and current git branch
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
#Add this to the bottom of your .bashrc file and run source ~/.bashrc | |
#thanks to | |
#http://www.ibm.com/developerworks/linux/library/l-tip-prompt/ and | |
#http://martinfitzpatrick.name/article/add-git-branch-name-to-terminal-prompt-mac/ | |
# Git branch in prompt. | |
parse_git_branch() { | |
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/' | |
} | |
export PS1="\u \[\e[30;1m\]\w \[\e[0m\]\[\033[32m\]\$(parse_git_branch)\[\033[00m\] $ " |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment