Function: magit-bisect-bad
magit-bisect-bad is an autoloaded, interactive and byte-compiled
function defined in magit-bisect.el.
Signature
(magit-bisect-bad)
Documentation
While bisecting, mark the current commit as bad.
Use this after you have asserted that the commit does contain the bug in question.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-bisect.el
;;;###autoload
(defun magit-bisect-bad ()
"While bisecting, mark the current commit as bad.
Use this after you have asserted that the commit does contain the
bug in question."
(interactive)
(magit-git-bisect (or (car (magit-bisect-terms))
(user-error "Not bisecting"))))