Guest User

Untitled

a guest
Jan 20th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. parse_git_branch() {
  2. git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
  3. }
  4.  
  5. if [ "$color_prompt" = yes ]; then
  6. PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u\[\033[00m\]:\[\033[01;34m\]\w\[\033[33m\]$(parse_git_branch)\[\033[00m\] '
  7. else
  8. PS1='${debian_chroot:+($debian_chroot)}\u:\w$(parse_git_branch) '
  9. fi
Add Comment
Please, Sign In to add comment