Unverified Commit c189e8b4 authored by Dan Wallis's avatar Dan Wallis Committed by GitHub

feat(agnoster): add remote-tracking status to prompt (#7209)

parent cc5100d1
...@@ -116,6 +116,17 @@ prompt_git() { ...@@ -116,6 +116,17 @@ prompt_git() {
prompt_segment green $CURRENT_FG prompt_segment green $CURRENT_FG
fi fi
local ahead behind
ahead=$(git log --oneline @{upstream}.. 2>/dev/null)
behind=$(git log --oneline ..@{upstream} 2>/dev/null)
if [[ -n "$ahead" ]] && [[ -n "$behind" ]]; then
PL_BRANCH_CHAR=$'\u21c5'
elif [[ -n "$ahead" ]]; then
PL_BRANCH_CHAR=$'\u21b1'
elif [[ -n "$behind" ]]; then
PL_BRANCH_CHAR=$'\u21b0'
fi
if [[ -e "${repo_path}/BISECT_LOG" ]]; then if [[ -e "${repo_path}/BISECT_LOG" ]]; then
mode=" <B>" mode=" <B>"
elif [[ -e "${repo_path}/MERGE_HEAD" ]]; then elif [[ -e "${repo_path}/MERGE_HEAD" ]]; then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment