diff options
author | Xinglu Chen <public@yoctocell.xyz> | 2021-02-06 15:15:23 +0100 |
---|---|---|
committer | Xinglu Chen <public@yoctocell.xyz> | 2021-02-06 15:15:23 +0100 |
commit | 420b37ff8cc775102cc59e8b29a4794bac3c82df (patch) | |
tree | 1dbffb41c9bdde1c6876baac41638bc49c58cfcc | |
parent | 539b1e7c03d00fb6939279b479adbe2d0a24da78 (diff) |
Add additional arguments for formatting patches
* git-email.el (git-email-format-patch-extra-args): Add more arguments
for conveience.
-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) |