Function: magit-rev-equal
magit-rev-equal is a byte-compiled function defined in magit-git.el.
Signature
(magit-rev-equal A B)
Documentation
Return t if there are no differences between the commits A and B.
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-git.el
(defun magit-rev-equal (a b)
"Return t if there are no differences between the commits A and B."
(magit-git-success "diff" "--quiet" a b))