Skip to content

Instantly share code, notes, and snippets.

@vmandic
Last active May 1, 2022 18:04
Show Gist options
  • Save vmandic/9af7efea9144d88b699526dd538d8c99 to your computer and use it in GitHub Desktop.
Save vmandic/9af7efea9144d88b699526dd538d8c99 to your computer and use it in GitHub Desktop.
Useful for setting terminal prompt on macOS or linux
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
export PS1="\u \[\033[32m\]\w\$(parse_git_branch)\[\033[00m\]\n$ "
# removes annoying startup message
export BASH_SILENCE_DEPRECATION_WARNING=1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment