- 论坛徽章:
- 0
|
设置git 的命令行提示颜色。
最下面那里
\$(git_promting)
不起作用,怎么回事
换成$(git_promting)能行,但是要在打开term 时就在git 目录。
那个\是什么作用?不用\的话,bash 只在每次打开时运行一次$()里面的东西,比如cd 进某目录就不会有作用了;如果用\,就是实时更新的,这样cd 进目录会更新。 但是函数的返回直接显示出来了。没有变成颜色信息,直接显示字符串了
\$(git_promting) 是这效果:
van-hr@ ~/tst/gittst1 \[\033[0;43m\]master$
$(git_promting) 是这种:
van-hr@ ~/tst/gittst1 master$
BGK='\[\033[0;40m\]'
BGR='\[\033[0;41m\]'
BGG='\[\033[0;42m\]'
BGY='\[\033[0;43m\]'
BGB='\[\033[0;44m\]'
BGM='\[\033[0;45m\]'
BGC='\[\033[0;46m\]'
BGW="\[\033[0;47m\]"
NONE='\[\033[0m\]'
# white while no modified, else yellow
git_promting ()
{
GIT_BRANCH_COLOR=$(git branch 2>/dev/null| grep "*"| cut -d " " -f 2)
if [ ! -z "$GIT_BRANCH_COLOR" ]; then
if git diff --quiet 2>/dev/null; then
GIT_BRANCH_COLOR="${BGW}${GIT_BRANCH_COLOR}"
else
GIT_BRANCH_COLOR="${BGY}${GIT_BRANCH_COLOR}"
fi
fi
echo "$GIT_BRANCH_COLOR"
}
export PS1="${BGB}\u@ \
${BGC}\w \
\$(git_promting)\
\$ ${NONE}" |
|