Function: magit-shortlog-range
magit-shortlog-range is an autoloaded, interactive and byte-compiled
function defined in magit-log.el.
Signature
(magit-shortlog-range REV-OR-RANGE ARGS)
Documentation
Show a history summary for commit or range REV-OR-RANGE.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-log.el
;;;###autoload
(defun magit-shortlog-range (rev-or-range args)
"Show a history summary for commit or range REV-OR-RANGE."
(interactive
(list (magit-read-range-or-commit "Shortlog for revision or range")
(transient-args 'magit-shortlog)))
(magit-git-shortlog rev-or-range args))