1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-27 04:40:59 +01:00

48528/0002: vcs_info git docs: ahead/behind commits: Reduce the number of forks

This commit is contained in:
Daniel Shahaf 2021-04-13 13:56:31 +00:00
parent d9ac5916ba
commit c40a63ab67
2 changed files with 10 additions and 3 deletions

View file

@ -182,10 +182,14 @@ function +vi-git-st() {
# Exit early in case the worktree is on a detached HEAD
git rev-parse ${hook_com[branch]}@{upstream} >/dev/null 2>&1 || return 0
ahead=$(git rev-list --count ${hook_com[branch]}@{upstream}..HEAD 2>/dev/null)
(( $ahead )) && gitstatus+=( "+${ahead}" )
local -a ahead_and_behind=(
$(git rev-list --left-right --count HEAD...${hook_com[branch]}@{upstream} 2>/dev/null)
)
behind=$(git rev-list --count HEAD..${hook_com[branch]}@{upstream} 2>/dev/null)
ahead=${ahead_and_behind[1]}
behind=${ahead_and_behind[2]}
(( $ahead )) && gitstatus+=( "+${ahead}" )
(( $behind )) && gitstatus+=( "-${behind}" )
hook_com[misc]+=${(j:/:)gitstatus}