Skip to content

Instantly share code, notes, and snippets.

@victordit
Created December 13, 2018 14:33
Show Gist options
  • Save victordit/e64d023edc9f76832db5f5a4a2336d89 to your computer and use it in GitHub Desktop.
Save victordit/e64d023edc9f76832db5f5a4a2336d89 to your computer and use it in GitHub Desktop.
git branch in linux profile
## Edit your profile
vim ~/.bashrc
## Add the follow code after last line
## git branch in prompt
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
export PS1="\u@\h \[\033[32m\]\w\[\033[33m\]\$(parse_git_branch)\[\033[00m\] $ "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment