Function: magit-rebase-skip

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

Signature

(magit-rebase-skip)

Documentation

Skip the current commit and restart the current rebase operation.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-sequence.el
;;;###autoload
(defun magit-rebase-skip ()
  "Skip the current commit and restart the current rebase operation."
  (interactive)
  (unless (magit-rebase-in-progress-p)
    (user-error "No rebase in progress"))
  (magit-run-git-sequencer (magit--rebase-resume-command) "--skip"))