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