Function: magit-insert-cherry-headers
magit-insert-cherry-headers is a byte-compiled function defined in
magit-log.el.
Signature
(magit-insert-cherry-headers)
Documentation
Insert headers appropriate for magit-cherry-mode buffers.
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260822.1158/magit-log.el
(defun magit-insert-cherry-headers ()
"Insert headers appropriate for `magit-cherry-mode' buffers."
(let ((branch (magit-branch-set-face magit-buffer-refname))
(upstream (magit-branch-set-face magit-buffer-cherry-upstream)))
(magit-insert-head-branch-header branch)
(magit-insert-upstream-branch-header branch upstream "Upstream: ")
(insert ?\n)))