Advertisement
Guest User

Untitled

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