Skip to content

Instantly share code, notes, and snippets.

@0xb4lamx
Created February 23, 2020 16:51
Show Gist options
  • Save 0xb4lamx/a1c427cd29e13597c1fb19da7c6cf870 to your computer and use it in GitHub Desktop.
Save 0xb4lamx/a1c427cd29e13597c1fb19da7c6cf870 to your computer and use it in GitHub Desktop.
git prompt on PS1 variable - debian stretch
# git config / completion PS1
source ~/.config/git/git-completion.bash
source ~/.config/git/git-prompt.sh
GIT_PS1_SHOWDIRTYSTATE=1
GIT_PS1_SHOWUPSTREAM="auto"
GIT_PS1_SHOWCOLORHINTS=1
# Show git branch name
color_prompt=yes
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[01;31m\]$(__git_ps1 " (%s)")\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w$(__git_ps1 " (%s)")\$ '
fi
unset color_prompt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment