Skip to content

Instantly share code, notes, and snippets.

@guicattani
Created September 7, 2019 15:31
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 guicattani/b406a8d5e90436c610d3dc3c5758016b to your computer and use it in GitHub Desktop.
Save guicattani/b406a8d5e90436c610d3dc3c5758016b to your computer and use it in GitHub Desktop.
Add to ~/.bashrc to show git branch in terminal
git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
PS1='\e[38;5;10m\[[\u@\h\[\033[37m\]\w\e[38;5;10m\]]\[\033[33m\]$(git_branch)\e[38;5;10m\$ \e[0m'
export PS1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment