--- contrib/completion/git-prompt.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/contrib/completion/git-prompt.sh b/contrib/completion/git-prompt.sh index 07b52be..18be99f 100644 --- a/contrib/completion/git-prompt.sh +++ b/contrib/completion/git-prompt.sh @@ -194,13 +194,13 @@ __git_ps1_show_upstream () "") # no upstream p="" ;; "0 0") # equal to upstream - p="=" ;; + p=" =" ;; "0 "*) # ahead of upstream - p=">" ;; + p=" >" ;; *" 0") # behind upstream - p="<" ;; + p=" <" ;; *) # diverged from upstream - p="<>" ;; + p=" <>" ;; esac else case "$count" in -- https://github.com/git/git/pull/181 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html