Skip to content

Instantly share code, notes, and snippets.

@PashaWNN
Created June 23, 2018 14:06
Show Gist options
  • Save PashaWNN/e49991cd0cf7760eaa94116f7251399f to your computer and use it in GitHub Desktop.
Save PashaWNN/e49991cd0cf7760eaa94116f7251399f to your computer and use it in GitHub Desktop.
Show branch in terminal
git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
export PS1="[\u@\h \W]\[\033[00;32m\]\$(git_branch)\[\033[00m\]\$ "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment