Function: magit-log-matching-branches

magit-log-matching-branches is an autoloaded, interactive and byte-compiled function defined in magit-log.el.

Signature

(magit-log-matching-branches PATTERN &optional ARGS FILES)

Documentation

Show log for all branches matching PATTERN and HEAD.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-log.el
;;;###autoload
(defun magit-log-matching-branches (pattern &optional args files)
  "Show log for all branches matching PATTERN and `HEAD'."
  (interactive (cons (magit-log-read-pattern "--branches")
                     (magit-log-arguments)))
  (magit-log-setup-buffer (list "HEAD" (format "--branches=%s" pattern))
                          args files))