diff options
Diffstat (limited to 'git-email.el')
-rw-r--r-- | git-email.el | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/git-email.el b/git-email.el index 01bd65a..ea60913 100644 --- a/git-email.el +++ b/git-email.el @@ -101,7 +101,19 @@ The path should end with a trailing \"/\"." :group 'git-email) (defcustom git-email-format-patch-extra-args - '("--cover-letter" "--thread" "--output-directory" "--signoff" "--to" "-v") + '("--cover-letter" + "--rfc" + "--signoff" + "--range-diff=" + "--interdiff=" + "--base-commit" + "--no-base-commit" + "--subject-prefix=" + "--thread=" + "--output-directory=" + "--to=" + "--reroll-count=" + "--in-reply-to=") "List of arguments to display in `git-email-format-patch'." :type '(string) :group 'git-email) |