Function: magit-bisect-skip

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

Signature

(magit-bisect-skip)

Documentation

While bisecting, skip the current commit.

Use this if for some reason the current commit is not a good one to test. This command lets Git choose a different one.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-bisect.el
;;;###autoload
(defun magit-bisect-skip ()
  "While bisecting, skip the current commit.
Use this if for some reason the current commit is not a good one
to test.  This command lets Git choose a different one."
  (interactive)
  (magit-git-bisect "skip"))