在git存储库中工作时,我正在使用本指南在gnome终端(Ubuntu 15.10)中显示分支名称。基于以上内容,我现在在〜/ .bashrc文件中具有以下内容:
# 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
结果,我得到:
所以它的工作原理。但是,为什么我的user @ host的颜色被删除了?而且我也希望分支名称应该是彩色的。在它看起来像这样之前:
更新:我现在尝试使用本指南:
https://coderwall.com/p/fasnya/add-git-branch-name-to-bash-prompt
将此添加到.bashrc中:
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\] $ "
并且有效:
注意在.bashrc中,我也有这个(默认):
# 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
我尚未找到该代码段给出正确结果而其他版本却未给出正确结果的原因。有什么意见吗?
这是我的.bashrc的版本,该版本启用了旧代码段,该代码段不起作用:
.bashrc
吗?IIRC的默认设置.bashrc
不启用颜色提示,因此您必须将其更改为显示颜色。这取决于您所做的更改。
force_color_prompt
没有帮助。
.bashrc
太多。如果您搞砸了,总是可以从获得原始文档/etc/skel/.bashrc
。
force_color_prompt
之前的注释去掉?