up vote 67 down vote favorite
9
share [g+] share [fb]

What's the point of the Sign Off feature in Git? When should I use it, if at all? I couldn't find any simple explanation.

link|improve this question

feedback

1 Answer

up vote 63 down vote accepted

Sign-off is a requirement for getting patches into the Linux kernel and a few other projects, but most projects don't actually use it.

It was introduced in the wake of the SCO lawsuit, (and other accusations of copyright infringement from SCO, most of which they never actually took to court), as a Developers Certificate of Origin. It is used to say that you certify that you have created the patch in question, or that you certify that to the best of your knowledge, it was created under an appropriate open-source license, or that it has been provided to you by someone else under those terms. This can help establish a chain of people who take responsibility for the copyright status of the code in question, to help ensure that copyrighted code not released under an appropriate free software (open source) license is not included in the kernel.

link|improve this answer
8  
It should be noted that the described meaning is the one assigned to the Signed-off-by: commit message lines by the Linux kernel project (and the Git project itself). For other projects, however, such lines are meaningless unless the project assigns meaning to them (e.g. by describing them in the project's documentation; e.g. Linux’s SubmittingPatches or Git’s SubmittingPatches). – Chris Johnsen Jul 6 '10 at 22:40
So why did this need to be done in the commit message? I thought that commits had an author attached to them, and they were part of the SHA1 hash? – Leif Andersen Dec 31 '10 at 17:02
3  
@Leif Mere authorship information is not sufficient. I might have written a patch, but if I based it on some code from Unix, I wouldn't have permission to release it under the GPL (at least without signoff from someone higher up). Or, a patch may make it between several different maintainers before winding up in the kernel tree; the signoff indicates the chain of custody. Read the certificate of origin that I linked to; that's what it means when you add a signoff line. The "Author" header may be inaccurate, and doesn't necessarily imply agreement with everything in the certificate of origin. – Brian Campbell Dec 31 '10 at 21:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.