如何在bash PROMPT中为当前git分支添加颜色?

时间:2018-11-30 23:58:49

标签: linux bash git terminal

我正在尝试在终端提示下向当前的git分支添加一些颜色。

我的提示:

export PS1="
\e[32m\u@\h \e[36m\w \`parse_git_branch\`
\\e[0m$ "

因此,您可能会猜到,它显示如下内容: user@host path/to/dir [git branch[ !]]。 仅当当前文件夹是git目录时,才会显示[git branch]。仅当当前分支上有更改时,才会显示感叹号!

因此,我想向git分支添加颜色(红色),但前提是要对其进行更改。我不能在提示声明中的\e[31m函数之前添加parse_git_branch,因为当它们不变时,它不能给我提供使用默认颜色的可能性,分支的名称会始终以红色显示。

所以我必须修改函数本身。这是:

function parse_git_branch() {
        BRANCH=`git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/'`
        if [ ! "${BRANCH}" == "" ]
        then
                STAT=`parse_git_dirty`
                echo "[${BRANCH}${STAT}]"
        else
                echo ""
        fi
}

我尝试了很多不同的事情。就像在\033[31m语句中[${BRANCH}${STAT}]之前声明颜色echo一样。这样做的问题在于,像以前一样,当没有任何更改时,颜色也会变为红色。

这是parse_git_dirty函数:

function parse_git_dirty {
        status=`git status 2>&1 | tee`
        dirty=`echo -n "${status}" 2> /dev/null | grep "modified:" &> /dev/null; echo "$?"`
        untracked=`echo -n "${status}" 2> /dev/null | grep "Untracked files" &> /dev/null; echo "$?"`
        ahead=`echo -n "${status}" 2> /dev/null | grep "Your branch is ahead of" &> /dev/null; echo "$?"`
        newfile=`echo -n "${status}" 2> /dev/null | grep "new file:" &> /dev/null; echo "$?"`
        renamed=`echo -n "${status}" 2> /dev/null | grep "renamed:" &> /dev/null; echo "$?"`
        deleted=`echo -n "${status}" 2> /dev/null | grep "deleted:" &> /dev/null; echo "$?"`
        bits=''
        if [ "${renamed}" == "0" ]; then
                bits=">${bits}"
        fi
        if [ "${ahead}" == "0" ]; then
                bits="*${bits}"
        fi
        if [ "${newfile}" == "0" ]; then
                bits="+${bits}"
        fi
        if [ "${untracked}" == "0" ]; then
                bits="?${bits}"
        fi
        if [ "${deleted}" == "0" ]; then
                bits="x${bits}"
        fi
        if [ "${dirty}" == "0" ]; then
                bits="!${bits}"
        fi
        if [ ! "${bits}" == "" ]; then
                echo " ${bits}"
        else
                echo ""
        fi
}

您建议我应该尝试什么?

谢谢。

2 个答案:

答案 0 :(得分:0)

因此,您正在运行parse_git_dirty,并将其几乎附加到分支名称中。相反,您可以为函数提供分支名称,并根据状态用不同的“颜色代码”字符串包装它。

答案 1 :(得分:0)

这将更改您的提示,使其不仅显示您的工作目录,而且显示您当前的git分支。

export PS1="\\w:\$(git branch 2>/dev/null | grep '^*' | colrm 1 2)\$ "