10

我有一个脚本(不是我自己编写的),它在我的命令提示符中显示了 git 分支/svn 分支。有谁知道为什么这在mac上不起作用?它在linux中完美运行。

来自https://github.com/xumingming/dotfiles/blob/master/.ps1

# Display ps1 with colorful pwd and git status
# Acording to Jimmyxu .bashrc
# Modified by Ranmocy
# --

if type -P tput &>/dev/null && tput setaf 1 &>/dev/null; then
    color_prompt=yes
else
    color_prompt=
fi

__repo () {
    branch=$(type __git_ps1 &>/dev/null && __git_ps1 | sed -e "s/^ (//" -e "s/)$//")
    if [ "$branch" != "" ]; then
        vcs=git
    else
        branch=$(type -P hg &>/dev/null && hg branch 2>/dev/null)
        if [ "$branch" != "" ]; then
            vcs=hg
        elif [ -e .bzr ]; then
            vcs=bzr
        elif [ -e .svn ]; then
            vcs=svn
        else
            vcs=
        fi
    fi
    if [ "$vcs" != "" ]; then
        if [ "$branch" != "" ]; then
            repo=$vcs:$branch
        else
            repo=$vcs
        fi
        echo -n "($repo)"
    fi
    return 0
}

if [ "$color_prompt" = yes ]; then
# PS1='\[\e[01;32m\]\u@\h\[\e[00m\]:\[\e[01;34m\]\w\[\e[33;40m\]$(__repo)\[\e[00m\]\$ '
    PS1='\[\e[01;32m\]\u\[\e[00m\]:\[\e[01;34m\]\W\[\e[33m\]$(__repo)\[\e[00m\]\$ '
else
    PS1='\u@\h:\w$(__repo)\$ '
fi
unset color_prompt

case "$TERM" in
xterm*|rxvt*)
  PS1="\[\e]0;\W\a\]$PS1"
  ;;
*)
  ;;
esac
4

4 回答 4

21

Git 的 Mac OS X 安装不__git_ps1包括在内。

采用:

alias __git_ps1="git branch 2>/dev/null | grep '*' | sed 's/* \(.*\)/(\1)/'"

作为替代。

于 2012-05-03T16:10:30.737 回答
14

如果命令失败,您提供的脚本将无法检测 git repos __git_ps1。将此添加到~/.bash_profile

source /usr/local/git/contrib/completion/git-completion.bash
source /usr/local/git/contrib/completion/git-prompt.sh

假设您将脚本文件存储为~/.ps1,还添加:

source ~/.ps1

  • 此解决方案还为 git 启用了选项卡完成。
  • Mac OS X 安装的 git 确实包含 __git_ps1,感谢 sschuberth 和 Cheapener 提到 git-completion.bash。
于 2012-07-10T02:09:10.060 回答
11

在使用内置 git 的新 Yosemite mac 上,我使用了这个:

source /Library/Developer/CommandLineTools/usr/share/git-core/git-completion.bash
source /Library/Developer/CommandLineTools/usr/share/git-core/git-prompt.sh
export PS1='\[\e]0;\u@\h: \w\a\]\[\e[32;1m\]\u@\h:\w \[\e[33;1m\]$(__git_ps1 "[%s] ")\[\e[32;1m\]\$ \[\e[0m\]'

注意:在 El Capitan 上,我不得不将 git 脚本的路径更改为/Applications/Xcode.app/Contents/Developer/usr/share/git-core,我猜你必须安装 XCode 才能工作。

于 2014-12-01T11:47:20.270 回答
1

如果您通过 macports (git-core) 安装了 git,则应将以下内容添加到~/.bash_profile

source /opt/local/etc/profile.d/bash_completion.sh
source /opt/local/share/git-core/git-prompt.sh  

git-prompt.sh 的位置似乎已经改变了几次。

于 2013-04-02T13:27:26.053 回答