0

我正在使用 git,这就是我的 bash_profile 的样子。

"$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function
if [ -f /usr/local/etc/bash_completion.d/git-completion.bash ]; then
  . /usr/local/etc/bash_completion.d/git-completion.bash
fi   
PS1='\[\033[32m\]\u@\h\[\033[00m\]:\[\033[36m\]\w\[\033[31m\]$(__git_ps1)\[\033[00m\]\$ '
GIT_PS1_SHOWDIRTYSTATE=true

我曾经像这样看到我目前正在使用的 branch_name,但它不再显示了。 project_name(current_branch_name)

它总是显示 '-bash: __git_ps1: command not found'

我可以在个人资料中更改什么?

4

1 回答 1

1

您遇到的问题是 git-completion.bash 很可能不在您要查找的位置。

这意味着:

if [ -f /usr/local/etc/bash_completion.d/git-completion.bash ]; then

可能失败了。

尝试将其更改为指向 git install 目录中的 contrib 目录。例如,如果 git 安装在 /usr/local/git 中,那么

if [ -f /usr/local/git/contrib/completion/git-completion.bash ] ; then
    . /usr/local/git/contrib/completion/git-completion.bash
fi
于 2013-06-04T19:16:21.957 回答