PS1 env变量在mac上不起作用

时间:2012-05-03 16:02:59

标签: git macros ps1

我有一个脚本(不是我自己编写的),它在我的命令提示符下显示了git branch / 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 个答案:

答案 0 :(得分:21)

Git的Mac OS X安装没有包含__git_ps1

使用:

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

作为替代。

答案 1 :(得分:14)

如果命令__git_ps1失败,您提供的脚本无法检测到git repos。将其添加到~/.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 installations of git 包含了__git_ps1,感谢sschuberth和cheapener提及git-completion.bash。

答案 2 :(得分: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才能使用它。

答案 3 :(得分: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的位置似乎已经改变了几次。