On Sat, Oct 30, 2021 at 07:51:56AM +0200, Denis 'GNUtoo' Carikli wrote: > Last time I sent a patch I was told that "by convention we keep [the > signed-off-by] for the person who applies the patch.". > > Does it means that next times I send patches, it's better if I do not > add my signed-off-by at all? Right. In Guix, we used the "signed-off-by" line to say who pushed the patch on behalf of its author. This information is actually always there in the Git history, but it's not shown unless you add '--format=full' to commands such as `git log` and `git show`. And of course, the ultimate source of truth about who pushed the patch is contained in the PGP signature of the commit, shown with a command such as `git show --show-signature 9e67f2ad418e9a5a7a83`. So, using "signed-off-by" in this way is just for convenience, for anyone reading the log. This convention is described in the manual section Commit Access: https://guix.gnu.org/manual/en/html_node/Commit-Access.html#Commit-Access > Or is it better if I leave it and that it get stripped by the person > who merge the patch each time as through that way way I also formally > signed the developer certificate of origin, and even if it's stripped > it offers more guarantees. You can do as you like, but adding the line "signed-off-by" to your patches does not communicate anything related to copyright ownership or licensing. It's assumed that you are sharing your patches under the license used by Guix, and that you have the right to do so. If it happens that we accept a contribution that does not meet those criteria, we will remove it from Guix, as part of our "Commitment to Correct Mistakes", which is part of the Free System Distribution Guidelines that we follow: https://www.gnu.org/distros/free-system-distribution-guidelines.en.html