Function: magit-sequence-insert-commit

magit-sequence-insert-commit is a byte-compiled function defined in magit-sequence.el.

Signature

(magit-sequence-insert-commit TYPE HASH FACE &optional ABBREV MSG)

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-sequence.el
(defun magit-sequence-insert-commit (type hash face &optional abbrev msg)
  (magit-insert-section (commit hash)
    (magit-insert-heading
      (magit--propertize-face type face) " "
      (if abbrev
          (concat (magit--propertize-face abbrev 'magit-hash) " " msg "\n")
        (concat (magit-format-rev-summary hash) "\n")))))