Function: magit-list-remote-branches

magit-list-remote-branches is a byte-compiled function defined in magit-git.el.

Signature

(magit-list-remote-branches &optional REMOTE)

Documentation

Return list of remote-tracking branches.

If optional REMOTE is non-nil, return only branches from that remote.

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260822.1158/magit-git.el
(defun magit-list-remote-branches (&optional remote)
  "Return list of remote-tracking branches.
If optional REMOTE is non-nil, return only branches from that remote."
  (magit-list-refs (concat "refs/remotes/" remote)))