mirror of
https://github.com/git-for-windows/git.git
synced 2026-06-15 18:49:48 -05:00
Merge branch 'kh/submittingpatches-trailers' into seen
The trailer sections in SubmittingPatches have been updated to encourage use of standard trailers. * kh/submittingpatches-trailers: SubmittingPatches: note that trailer order matters SubmittingPatches: be consistent with trailer markup SubmittingPatches: document Based-on-patch-by trailer SubmittingPatches: discourage common Linux trailers SubmittingPatches: discuss non-ident trailers SubmittingPatches: encourage trailer use for substantial help
This commit is contained in:
@@ -375,7 +375,7 @@ or, on an older version of Git without support for --pretty=reference:
|
||||
....
|
||||
|
||||
[[sign-off]]
|
||||
=== Certify your work by adding your `Signed-off-by` trailer
|
||||
=== Certify your work by adding your `Signed-off-by:` trailer
|
||||
|
||||
To improve tracking of who did what, we ask you to certify that you
|
||||
wrote the patch or have the right to pass it on under the same license
|
||||
@@ -412,7 +412,7 @@ d. I understand and agree that this project and the contribution
|
||||
this project or the open source license(s) involved.
|
||||
____
|
||||
|
||||
you add a "Signed-off-by" trailer to your commit, that looks like
|
||||
you add a `Signed-off-by:` trailer to your commit, that looks like
|
||||
this:
|
||||
|
||||
....
|
||||
@@ -422,7 +422,7 @@ this:
|
||||
This line can be added by Git if you run the git-commit command with
|
||||
the -s option.
|
||||
|
||||
Notice that you can place your own `Signed-off-by` trailer when
|
||||
Notice that you can place your own `Signed-off-by:` trailer when
|
||||
forwarding somebody else's patch with the above rules for
|
||||
D-C-O. Indeed you are encouraged to do so. Do not forget to
|
||||
place an in-body "From: " line at the beginning to properly attribute
|
||||
@@ -434,7 +434,7 @@ your patch differs from project to project, so it may be different
|
||||
from that of the project you are accustomed to.
|
||||
|
||||
[[real-name]]
|
||||
Please use a known identity in the `Signed-off-by` trailer, since we cannot
|
||||
Please use a known identity in the `Signed-off-by:` trailer, since we cannot
|
||||
accept anonymous contributions. It is common, but not required, to use some form
|
||||
of your real name. We realize that some contributors are not comfortable doing
|
||||
so or prefer to contribute under a pseudonym or preferred name and we can accept
|
||||
@@ -444,8 +444,16 @@ identifying, and not misleading.
|
||||
The goal of this policy is to allow us to have sufficient information to contact
|
||||
you if questions arise about your contribution.
|
||||
|
||||
=== Commit trailers
|
||||
[[commit-trailers]]
|
||||
If you like, you can put extra trailers at the end:
|
||||
It is polite to credit people who have helped with your work to a
|
||||
substantial enough degree. This project uses commit trailers for that,
|
||||
where the credited person is written out like a Git author, i.e. with
|
||||
both their name and their email address. Note that the threshold to
|
||||
credit someone is a judgement call, and crediting someone for simple
|
||||
review work is certainly not necessary.
|
||||
|
||||
These are the common trailers in use:
|
||||
|
||||
. `Reported-by:` is used to credit someone who found the bug that
|
||||
the patch attempts to fix.
|
||||
@@ -458,6 +466,10 @@ If you like, you can put extra trailers at the end:
|
||||
and found it to have the desired effect.
|
||||
. `Co-authored-by:` is used to indicate that people exchanged drafts
|
||||
of a patch before submitting it.
|
||||
. `Based-on-patch-by:` can be used when someone else authored parts of
|
||||
the patch that you are submitting. This might be relevant if someone
|
||||
sent a patch to the mailing list without a commit message or a
|
||||
`Signed-off-by:` and you have picked it up.
|
||||
. `Helped-by:` is used to credit someone who suggested ideas for
|
||||
changes without providing the precise changes in patch form.
|
||||
. `Mentored-by:` is used to credit someone with helping develop a
|
||||
@@ -467,10 +479,22 @@ If you like, you can put extra trailers at the end:
|
||||
|
||||
While you can also create your own trailer if the situation warrants it, we
|
||||
encourage you to instead use one of the common trailers in this project
|
||||
highlighted above.
|
||||
highlighted above. A trailer that credits someone might be more likely
|
||||
to be accepted since these are the most common ones. But another kind of
|
||||
trailer might be relevant, for example to link to an issue tracker
|
||||
belonging to a downstream project that is affected by a bug in Git.
|
||||
|
||||
Other projects might regularly refer to other kinds of data, like
|
||||
`Fixes:` and `Link:` in the Linux Kernel project, but these ones in
|
||||
particular are not used in this project.
|
||||
|
||||
Only capitalize the very first letter of the trailer, i.e. favor
|
||||
"Signed-off-by" over "Signed-Off-By" and "Acked-by:" over "Acked-By".
|
||||
`Signed-off-by:` over `Signed-Off-By:` and `Acked-by:` over `Acked-By:`.
|
||||
|
||||
Note that these trailers should come before your `Signed-off-by:`
|
||||
trailer. You are signing off to the patch as well as the message. This
|
||||
also makes it clear who added trailers when multiple people have signed
|
||||
off on a patch.
|
||||
|
||||
[[cover-letter]]
|
||||
=== Cover Letter
|
||||
@@ -587,8 +611,8 @@ when the maintainer did not heavily participate in the discussion and
|
||||
instead left the review to trusted others.
|
||||
|
||||
Do not forget to add trailers such as `Acked-by:`, `Reviewed-by:` and
|
||||
`Tested-by:` lines as necessary to credit people who helped your
|
||||
patch, and "cc:" them when sending such a final version for inclusion.
|
||||
`Tested-by:` (see <<commit-trailers,Commit trailers>>), and "cc:" them
|
||||
when sending such a final version for inclusion.
|
||||
|
||||
==== `format-patch` and `send-email`
|
||||
|
||||
@@ -618,7 +642,7 @@ Here is a link:MyFirstContribution.html#v2-git-send-email[step-by-step guide] on
|
||||
how to submit updated versions of a patch series.
|
||||
|
||||
If your log message (including your name on the
|
||||
`Signed-off-by` trailer) is not writable in ASCII, make sure that
|
||||
`Signed-off-by:` trailer) is not writable in ASCII, make sure that
|
||||
you send off a message in the correct encoding.
|
||||
|
||||
WARNING: Be wary of your MUAs word-wrap
|
||||
@@ -638,7 +662,7 @@ previously sent.
|
||||
The `git format-patch` command follows the best current practice to
|
||||
format the body of an e-mail message. At the beginning of the
|
||||
patch should come your commit message, ending with the
|
||||
`Signed-off-by` trailers, and a line that consists of three dashes,
|
||||
`Signed-off-by:` trailers, and a line that consists of three dashes,
|
||||
followed by the diffstat information and the patch itself. If
|
||||
you are forwarding a patch from somebody else, optionally, at
|
||||
the beginning of the e-mail message just before the commit
|
||||
|
||||
Reference in New Issue
Block a user