Function: magit-sequencer-skip
magit-sequencer-skip is an autoloaded, interactive and byte-compiled
function defined in magit-sequence.el.
Signature
(magit-sequencer-skip)
Documentation
Skip the stopped at commit during a cherry-pick or revert sequence.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-sequence.el
;;;###autoload
(defun magit-sequencer-skip ()
"Skip the stopped at commit during a cherry-pick or revert sequence."
(interactive)
(unless (magit-sequencer-in-progress-p)
(user-error "No cherry-pick or revert in progress"))
(magit-call-git "reset" "--hard")
(magit-sequencer-continue))