Function: magit-am-skip
magit-am-skip is an autoloaded, interactive and byte-compiled function
defined in magit-sequence.el.
Signature
(magit-am-skip)
Documentation
Skip the stopped at patch during a patch applying sequence.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-sequence.el
;;;###autoload
(defun magit-am-skip ()
"Skip the stopped at patch during a patch applying sequence."
(interactive)
(unless (magit-am-in-progress-p)
(user-error "Not applying any patches"))
(magit-run-git-sequencer "am" "--skip"))