Guest User

Untitled

a guest
Aug 20th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. #--------To show proper git branch name when present in the console.
  2. #--------Add this to ~/.bash_profile or ~/.bash_rc
  3. #--------This will start showing branch names in the terminal like
  4. #--------puneetar folder_name (branch_name) $
  5. #--------
  6. parse_git_branch() {
  7.    #  git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
  8. git branch 2> /dev/null | grep '*' | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
  9. }
  10. export PS1="\u@\h \[\033[32m\]\W\[\033[33m\]\$(parse_git_branch)\[\033[00m\] $ "
Add Comment
Please, Sign In to add comment