Function: magit-log-matching-tags
magit-log-matching-tags is an autoloaded, interactive and
byte-compiled function defined in magit-log.el.
Signature
(magit-log-matching-tags PATTERN &optional ARGS FILES)
Documentation
Show log for all tags matching PATTERN and HEAD.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-log.el
;;;###autoload
(defun magit-log-matching-tags (pattern &optional args files)
"Show log for all tags matching PATTERN and `HEAD'."
(interactive (cons (magit-log-read-pattern "--tags")
(magit-log-arguments)))
(magit-log-setup-buffer (list "HEAD" (format "--tags=%s" pattern))
args files))