diff options
author | 2021-04-02 14:43:14 -0700 | |
---|---|---|
committer | 2021-04-02 14:43:14 -0700 | |
commit | 8a4394d1c12658b0dc6bd67d7bc6897def692851 (patch) | |
tree | 65f399cb89946c9718c4f4f6f452d9d7bcecf3ef /Documentation | |
parent | Merge branch 'jh/simple-ipc' (diff) | |
parent | format-patch: allow a non-integral version numbers (diff) | |
download | tgif-8a4394d1c12658b0dc6bd67d7bc6897def692851.tar.xz |
Merge branch 'zh/format-patch-fractional-reroll-count'
"git format-patch -v<n>" learned to allow a reroll count that is
not an integer.
* zh/format-patch-fractional-reroll-count:
format-patch: allow a non-integral version numbers
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-format-patch.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Documentation/git-format-patch.txt b/Documentation/git-format-patch.txt index 5cd8578b6f..911da181a1 100644 --- a/Documentation/git-format-patch.txt +++ b/Documentation/git-format-patch.txt @@ -238,6 +238,11 @@ populated with placeholder text. `--subject-prefix` option) has ` v<n>` appended to it. E.g. `--reroll-count=4` may produce `v4-0001-add-makefile.patch` file that has "Subject: [PATCH v4 1/20] Add makefile" in it. + `<n>` does not have to be an integer (e.g. "--reroll-count=4.4", + or "--reroll-count=4rev2" are allowed), but the downside of + using such a reroll-count is that the range-diff/interdiff + with the previous version does not state exactly which + version the new interation is compared against. --to=<email>:: Add a `To:` header to the email headers. This is in addition |