Function: magit-log
magit-log is an autoloaded, interactive and byte-compiled function
defined in magit-log.el.
Signature
(magit-log)
Documentation
Show a commit or reference log.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-log.el
;;;###autoload(autoload 'magit-log "magit-log" nil t)
(transient-define-prefix magit-log ()
"Show a commit or reference log."
:man-page "git-log"
:class 'magit-log-prefix
'magit-log-infix-arguments
[["Log"
("l" magit-log-current)
("o" "other" magit-log-other)
("h" "HEAD" magit-log-head :level 0)
("u" "related" magit-log-related)]
[""
("L" "local branches" magit-log-branches)
("b" "all branches" magit-log-all-branches)
("a" "all references" magit-log-all)
("B" "matching branches" magit-log-matching-branches :level 7)
("T" "matching tags" magit-log-matching-tags :level 7)
("m" "merged" magit-log-merged :level 7)]
["Reflog"
("r" "current" magit-reflog-current)
("O" "other" magit-reflog-other)
("H" "HEAD" magit-reflog-head)]
[:if-non-nil magit-wip-mode
:description "Wiplog"
("i" "index" magit-wip-log-index)
("w" "worktree" magit-wip-log-worktree)]
["Other"
("s" "shortlog" magit-shortlog)]])