bash: git prompt configuration

pré-commande bash
couleur
info stash, untrack, branch
This commit is contained in:
Meutel 2016-03-08 19:41:15 +01:00
parent 540d78dac2
commit 45de81964c

17
_bashrc
View File

@ -32,8 +32,7 @@ xterm-color)
;; ;;
esac esac
# Comment in the above and uncomment this below for a color prompt # Prompt
#PS1='${debian_chroot:+($debian_chroot)}\[\033[0;32m\]\u@\h\[\033[00m\] \[\033[01;34m\]\w\[\033[00m\]\n\$ '
PS1="\[\033[1;31m\]>> \[\033[01;37m\](\[\033[0;37m\]\u@\[\033[0;32m\]\h\[\033[01;37m\]) \[\033[01;34m\]\w\[\033[00m\]\n\[\033[1;31m\]>>\[\033[0;37m\] " PS1="\[\033[1;31m\]>> \[\033[01;37m\](\[\033[0;37m\]\u@\[\033[0;32m\]\h\[\033[01;37m\]) \[\033[01;34m\]\w\[\033[00m\]\n\[\033[1;31m\]>>\[\033[0;37m\] "
# If this is an xterm set the title to user@host:dir # If this is an xterm set the title to user@host:dir
@ -98,3 +97,17 @@ export YDL_TARGET=$HOME
if [ -f ~/.bashrc_$(hostname -s) ]; then if [ -f ~/.bashrc_$(hostname -s) ]; then
. ~/.bashrc_$(hostname -s) . ~/.bashrc_$(hostname -s)
fi fi
# git
if [ -e /usr/local/share/git-core/contrib/completion/git-completion.bash ]; then
. /usr/local/share/git-core/contrib/completion/git-completion.bash
fi
if [ -e /usr/local/share/git-core/contrib/completion/git-prompt.sh ]; then
. /usr/local/share/git-core/contrib/completion/git-prompt.sh
export GIT_PS1_SHOWDIRTYSTATE=1
export GIT_PS1_SHOWSTASHSTATE=1
export GIT_PS1_SHOWUNTRACKEDFILES=1
export GIT_PS1_SHOWUPSTREAM="auto"
export GIT_PS1_SHOWCOLORHINTS=1
export PROMPT_COMMAND='__git_ps1 "\[\033[1;31m\]>> \[\033[01;37m\](\[\033[0;37m\]\u@\[\033[0;32m\]\h\[\033[01;37m\]) \[\033[01;34m\]\w\[\033[00m\]" "\n\[\033[1;31m\]>>\[\033[0;37m\] "'
fi