Skip to content

Instantly share code, notes, and snippets.

@majidgolshadi
Created July 27, 2016 10:40
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 majidgolshadi/45275ba882c8b836acd084f2fa61044c to your computer and use it in GitHub Desktop.
Save majidgolshadi/45275ba882c8b836acd084f2fa61044c to your computer and use it in GitHub Desktop.
Show git branch in address
git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
...
if ${use_color} ; then
...
if [[ ${EUID} == 0 ]] ; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;31m\]\h\[\033[01;34m\] \W\[\033[00m\] $(git_branch) $ '
else
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[01;34m\] \w\[\033[00m\] $(git_branch) $ '
fi
...
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment