Function: magit-am-apply-maildir
magit-am-apply-maildir is an autoloaded, interactive and byte-compiled
function defined in magit-sequence.el.
Signature
(magit-am-apply-maildir &optional MAILDIR ARGS)
Documentation
Apply the patches from MAILDIR.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-sequence.el
;;;###autoload
(defun magit-am-apply-maildir (&optional maildir args)
"Apply the patches from MAILDIR."
(interactive (list (read-file-name "Apply mbox or Maildir: ")
(magit-am-arguments)))
(magit-run-git-sequencer "am" args (magit-convert-filename-for-git
(expand-file-name maildir))))