我正在使用 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'
我可以在个人资料中更改什么?