Function: magit-get-upstream-remote
magit-get-upstream-remote is a byte-compiled function defined in
magit-git.el.
Signature
(magit-get-upstream-remote &optional BRANCH ALLOW-UNNAMED)
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-git.el
(defun magit-get-upstream-remote (&optional branch allow-unnamed)
(and-let* ((branch (or branch (magit-get-current-branch)))
(remote (magit-get "branch" branch "remote")))
(and (not (equal remote "."))
(cond ((member remote (magit-list-remotes))
(magit--propertize-face remote 'magit-branch-remote))
((and allow-unnamed
(string-match-p "\\(\\`.\\{0,2\\}/\\|[:@]\\)" remote))
(magit--propertize-face remote 'bold))))))