Function: magit-bisect-good

magit-bisect-good is an autoloaded, interactive and byte-compiled function defined in magit-bisect.el.

Signature

(magit-bisect-good)

Documentation

While bisecting, mark the current commit as good.

Use this after you have asserted that the commit does not contain the bug in question.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-bisect.el
;;;###autoload
(defun magit-bisect-good ()
  "While bisecting, mark the current commit as good.
Use this after you have asserted that the commit does not contain
the bug in question."
  (interactive)
  (magit-git-bisect (or (cadr (magit-bisect-terms))
                        (user-error "Not bisecting"))))