Function: magit-list-unmerged-to-upstream-branches
magit-list-unmerged-to-upstream-branches is a byte-compiled function
defined in magit-git.el.
Signature
(magit-list-unmerged-to-upstream-branches)
Documentation
Return list of branches not merged into their respective upstreams.
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260822.1158/magit-git.el
(defun magit-list-unmerged-to-upstream-branches ()
"Return list of branches not merged into their respective upstreams."
(seq-filter (##and-let ((upstream (magit-get-upstream-branch %)))
(member % (magit-list-unmerged-branches upstream)))
(magit-list-local-branch-names)))