71

我尝试安装 Ruby 2.0。我的命令行 urped 现在如下所示:

-bash: __git_ps1: command not found
[11:58:28][whatever@whatever ~]$ 

我不知道如何摆脱 __git_ps1 command not found 错误。我搜索了我的 .bash_profile 和 .bashrc 以查看它是否正在尝试设置变量或其他内容,但没有看到任何内容。我唯一能找到提到的 git_ps1 的地方是 ~/.dotfiles/.bash_prompt。我完全替换了该文件的内容,注销并重新登录,它没有修复任何问题。

我看到了这个,但我对命令行很陌生,所以我只是让自己感到困惑。

有任何想法吗?

4

6 回答 6

132

运行以下命令:

$ curl -L https://raw.github.com/git/git/master/contrib/completion/git-prompt.sh > ~/.bash_git

并将其添加到您的顶部~/.bashrc

source ~/.bash_git

重新登录到你的 shell,你应该已经设置好了。

于 2013-03-13T22:59:33.060 回答
54

在您的系统中搜索 a git-prompt.sh,您需要source__git_ps1功能才能使用该功能。在 Arch 中,它当前位于/usr/share/git/completion/git-prompt.sh. 添加

source /path/to/git-prompt.sh

到一些合适的shell脚本。如果您不确定在哪里,请将其添加到您的~/.bashrc.

如果您已经locate安装,您可以使用它来查找git-prompt.sh文件,但您可能需要先updatedb以 root 身份运行。

于 2013-07-07T01:08:06.997 回答
31

BASH 有很多方法可以自动设置提示符,以便为您提供很好的信息。您通过设置PS1环境变量来设置提示。例如,如果我设置PS1="$ "我的提示将如下所示:

$ 

信息量不大。我只能说命令行正在提示我。

但是,如果我设置PS1=\u@\h: \w$,我的提示现在将如下所示:

david@vegibank:/usr/bin$ 

这告诉我我是如何登录的 (the \u)、我所在的机器 ( \h) 以及我所在的目录 (the \w)。如果我使用git,如果我所在的 git 分支也是我的提示的一部分,那就太好了。

这正是您的.profile、您的.bashrc文件、您的.bash_login或您的.bash_profile脚本所发生的事情。或者,某些系统管理员在/etc/profile.

您可以做几件事。任何一个:

  • 下载缺少的__git_ps1并确保它在您的$PATH环境变量中(由上述各种初始化文件的组合设置)
  • PS1在正在执行的任何初始化文件中更改您的环境变量(我相信它可能是.bash_profile.

只需将其添加为最后一行:

PS1="\u@\h:\w\n$ "

添加\n的在下面的行上打印美元符号提示,如下所示:

david@vegibank:/usr/bin
$ 

我喜欢这样做,因为提示可能会变得相当长,并且当提示长于 30 到 50 个字符时,编辑命令行会变得很棘手。否则,这几乎是大多数用户使用的标准提示。您可以在手册页中看到有关设置 BASH 提示的更多信息。(在该页面上搜索“提示”一词)。

如果您觉得它有点混乱,请庆幸您没有使用 Kornshell。我使用 Kornshell 并获得相同的提示PS1=\u@\h:\w\n$,我将提示设置为:

export PS1='$(print -n "`logname`@`hostname`:";if [[ "${PWD#$HOME}" != "$PWD" ]] then; print -n "~${PWD#$HOME}"; else; print -n "$PWD";fi;print "\n$ ")'
于 2013-03-14T04:21:24.040 回答
7

引自/usr/lib/git-core/git-sh-prompt

# This script allows you to see repository status in your prompt.
#
# To enable:
#
#    1) Copy this file to somewhere (e.g. ~/.git-prompt.sh).
#    2) Add the following line to your .bashrc/.zshrc:
#        source ~/.git-prompt.sh
#    3a) Change your PS1 to call __git_ps1 as
#        command-substitution:
#        Bash: PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ '
#        ZSH:  setopt PROMPT_SUBST ; PS1='[%n@%m %c$(__git_ps1 " (%s)")]\$ '
#        the optional argument will be used as format string.
#    3b) Alternatively, for a slightly faster prompt, __git_ps1 can
#        be used for PROMPT_COMMAND in Bash or for precmd() in Zsh
#        with two parameters, <pre> and <post>, which are strings
#        you would put in $PS1 before and after the status string
#        generated by the git-prompt machinery.  e.g.
#        Bash: PROMPT_COMMAND='__git_ps1 "\u@\h:\w" "\\\$ "'
#          will show username, at-sign, host, colon, cwd, then
#          various status string, followed by dollar and SP, as
#          your prompt.
#        ZSH:  precmd () { __git_ps1 "%n" ":%~$ " "|%s" }
#          will show username, pipe, then various status string,
#          followed by colon, cwd, dollar and SP, as your prompt.
#        Optionally, you can supply a third argument with a printf
#        format string to finetune the output of the branch status

遵循这些步骤应该可以解决您的问题!

于 2019-03-21T06:25:21.093 回答
6

截至 2019 年,安装包时应安装提示助手功能git,可在/usr/lib/git-core/git-sh-prompt.

如果未加载,请安装bash-completion包并查看您的~/.bashrc.

就我而言,我不得不取消注释:

if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
    . /etc/bash_completion
fi

并打开一个新的外壳,一切都很好。

根本原因是在全新安装时没有正确设置“bash-completion”。

于 2019-03-09T21:20:24.793 回答
1

我只是使用解决了它

sudo apt install git

出现这种情况是因为未安装 git,因此未定义环境变量。

于 2020-05-27T20:12:45.690 回答