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
前コメント解除?