Function: magit-insert-unpulled-from-upstream
magit-insert-unpulled-from-upstream is a byte-compiled function
defined in magit-log.el.
Signature
(magit-insert-unpulled-from-upstream)
Documentation
Insert commits that haven't been pulled from the upstream yet.
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-log.el
(defun magit-insert-unpulled-from-upstream ()
"Insert commits that haven't been pulled from the upstream yet."
(when-let ((upstream (magit-get-upstream-branch)))
(magit-insert-section (unpulled "..@{upstream}" t)
(magit-insert-heading
(format (propertize "Unpulled from %s."
'font-lock-face 'magit-section-heading)
upstream))
(magit--insert-log nil "..@{upstream}" magit-buffer-log-args)
(magit-log-insert-child-count))))