Skip to content

Instantly share code, notes, and snippets.

@sergey-melnychuk
Created May 29, 2018 16:17
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 sergey-melnychuk/89e6e78ac212dd4b55cc819356108459 to your computer and use it in GitHub Desktop.
Save sergey-melnychuk/89e6e78ac212dd4b55cc819356108459 to your computer and use it in GitHub Desktop.
Command propmt
# MacOS: ~/.bash_profile
# Linux: ~/.bashrc
get_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ :\1/'
}
export PS1='\u@[\w$(get_git_branch)] $ '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment