提交 3c485db8 编写于 作者: R r3dDoX

replaced hardcoded origin/{branch-name} with @{upstream} which gets the...

replaced hardcoded origin/{branch-name} with @{upstream} which gets the upstream branch since git 1.7.0
上级 3913106b
......@@ -54,7 +54,7 @@ git_remote_status() {
# Checks if there are commits ahead from remote
function git_prompt_ahead() {
if $(echo "$(command git log origin/$(current_branch)..HEAD 2> /dev/null)" | grep '^commit' &> /dev/null); then
if $(echo "$(command git log @{upstream}..HEAD 2> /dev/null)" | grep '^commit' &> /dev/null); then
echo "$ZSH_THEME_GIT_PROMPT_AHEAD"
fi
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册