Function: magit-am-continue

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

Signature

(magit-am-continue)

Documentation

Resume the current patch applying sequence.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-sequence.el
;;;###autoload
(defun magit-am-continue ()
  "Resume the current patch applying sequence."
  (interactive)
  (cond
    ((not (magit-am-in-progress-p))
     (user-error "Not applying any patches"))
    ((magit-anything-unstaged-p t)
     (user-error "Cannot continue due to unstaged changes"))
    ((magit-run-git-sequencer "am" "--continue"))))