Git rehberinde çalışırken gnome terminalinde (Ubuntu 15.10) şube ismini göstermek için bu kılavuzu kullanıyorum . Yukarıdakilere dayanarak şimdi ~ / .bashrc dosyamda aşağıdakiler var:
# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
#force_color_prompt=yes
...
# Add git branch if its present to PS1
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[01;31m\]$(parse_git_branch)\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w$(parse_git_branch)\$ '
fi
unset color_prompt force_color_prompt
Sonuç olarak şimdi alıyorum:
bu yüzden işe yarıyor . Ancak neden benim kullanıcı @ ev sahibinin rengi kaldırıldı? Ayrıca dal adının renkli olması gerektiğini de bekliyorum. Böyle görünmeden önce:
GÜNCELLEME: Artık bu kılavuzu denedim:
https://coderwall.com/p/fasnya/add-git-branch-name-to-bash-prompt
bunu .bashrc'ye ekleyerek:
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
export PS1="\u@\h \[\033[32m\]\w\[\033[33m\]\$(parse_git_branch)\[\033[00m\] $ "
ve bu işe yarıyor:
Dikkat. .Bashrc Bende de var (varsayılan):
# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
#force_color_prompt=yes
Bu snippet'in neden doğru sonuç verdiğini ve diğer sürümün verememe nedenini henüz bulamadım. Bu konuda herhangi bir giriş var mı?
İşte çalışmayan eski pasajı etkinleştiren benim .bashrc sürümü:
.bashrc
? IIRC varsayılan .bashrc
renk istemlerini etkinleştirmez, bu yüzden renkleri göstermesi için değiştirmeniz gerekir. Neyi değiştirdiğine bağlı.
force_color_prompt
yardımcı olmadığını söyleyecektir .
.bashrc
fazla endişelenmeyin . Eğer karışırsan, orjinalini her zaman alabilirsin /etc/skel/.bashrc
.
force_color_prompt
önce uncommented oldu mu?