Function: magit-repolist-column-unpushed-to-pushremote
magit-repolist-column-unpushed-to-pushremote is a byte-compiled
function defined in magit-repos.el.
Signature
(magit-repolist-column-unpushed-to-pushremote SPEC)
Documentation
Insert number of commits in the current branch but not its push branch.
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-repos.el
(defun magit-repolist-column-unpushed-to-pushremote (spec)
"Insert number of commits in the current branch but not its push branch."
(and$ (magit-get-push-branch nil t)
(magit-repolist-insert-count (car (magit-rev-diff-count "HEAD" $))
spec)))