Skip to content

Instantly share code, notes, and snippets.

@iuliaL
Last active January 9, 2018 14:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iuliaL/2336d3334705c9eac37f522152fcac27 to your computer and use it in GitHub Desktop.
Save iuliaL/2336d3334705c9eac37f522152fcac27 to your computer and use it in GitHub Desktop.
Append git branch name to prompt (only) when in git repository
git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
export PS1="\u@\[\033[32m\]\w\[\033[33m\]\$(git_branch)\[\033[00m\]\$ "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment