diff options
author | Derek Jones <derek.jones@ellislab.com> | 2012-07-02 20:12:44 +0200 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2012-07-02 20:12:44 +0200 |
commit | f3ab257d9f4efdb9658135fae89f3c3eec6b6a47 (patch) | |
tree | e9851e42b7480d2ab79f9830046ed985a5c00431 /readme.rst | |
parent | 0692a1eb0893f98a7a848e81385087ec8acd8f97 (diff) |
Adding contribution guidelines to user guide, including new Developer's Certificate of Origin
Diffstat (limited to 'readme.rst')
-rw-r--r-- | readme.rst | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/readme.rst b/readme.rst index 7b718febb..b211ad7cd 100644 --- a/readme.rst +++ b/readme.rst @@ -115,6 +115,34 @@ at the same time, we might really want X but disagree with Y, meaning we cannot merge the request. Using the Git-Flow branching model you can create new branches for both of these features and send two requests. +Signing +======= +You must sign your work, certifying that you either wrote the work or +otherwise have the right to pass it on to an open source project. git makes +this trivial as you merely have to use `--signoff` on your commits to your +CodeIgniter fork. + +:: + + git commit --signoff + +or simply:: + + git commit -s + +This will sign your commits with the information setup in your git config, e.g. + + Signed-off-by: John Q Public <john.public@example.com> + +If you are using Tower there is a "Sign-Off" checkbox in the commit window. You +could even alias git commit to use the -s flag so you don’t have to think about +it. + +By signing your work in this manner, you certify to a "Developer's Certificate +or Origin". The current version of this certificate is in the `DCO.txt` file +in the root of this repository. + + ************ How-to Guide ************ |