README: Fix 'incorperate' and 'Includes' typos
[signed-off-by.git] / README
1 Do you want explicit licensing and publishing permissions for each
2 patch you incorporate into your project?  Do you miss the simplicity
3 of Signed-off-by tags you use when developing the Linux kernel and
4 Git?  This repository extracts the Developer Certificate of Origin and
5 Signed-off-by documentation from both projects, and presents them in a
6 project-agnostic manner.  To incorporate into your own project,
7
8 1. Merge the documentation into your project:
9
10     $ git remote add s-o-b git://tremily.us/signed-off-by.git
11     $ git fetch s-o-b
12     $ git merge s-o-b/signed-off-by
13
14 2. Tell your developers by pointing to
15    `Documentation/SubmittingPatches` from your `README` or
16    `CONTRIBUTING` documentation and sending a message to your mailing
17    list.
18
19 3. Prosper.
20
21 Branches
22 ========
23
24 To make it easier to merge bits and pieces of this documentation into
25 your project, I've split the contents into several branches:
26
27 master:
28   This branch, mostly a container for this `README`.
29
30 signed-off-by:
31   `Documentation/developer-certificate-of-origin` contains the full
32   text of the DCO (verbatim copies only), and
33   `Documentation/SubmittingPatches` (GPLv2-exact) explains how to
34   use the DCO with Signed-off-by tags.
35
36 copying:
37   The license under which `Documentation/SubmittingPatches` is
38   distributed.  Check here to determine if you are allowed to merge
39   `signed-off-by` into your project.
40
41 contributing:
42   An example `CONTRIBUTING` file in case your license does not allow
43   you to merge `signed-off-by`.  The contributing file is released
44   under the very permissive CC0 1.0 unported.
45
46 contributing-github:
47   A version of the `contributing` branch adapted for GitHub-based
48   projects.
49
50 license:
51   The text of all the licenses related to this repository.  Includes
52   `GPLv2-exact` for `SubmittingPatches`, `CC0-1.0` for `CONTRIBUTING`,
53   and `CC-BY-3.0` for `CC0-1.01`.  It also includes the short,
54   human-readable versions of the CC licenses.
55
56 Borrowed commits
57 ================
58
59 For work that started in other projects (e.g. the Linux kernel and
60 Git), I've cherry-picked the relevant commits from the project
61 repositories to preserve commit metadata.  For each of these commits,
62 I've attached a note with the commit hash, original commit message,
63 and original commit repository.  Fetch the `refs/notes/commits`
64 reference from my public repository if you want these notes:
65
66   $ git config --add remote.origin.fetch '+refs/notes/*:refs/notes/*'
67   $ git fetch origin
68
69 If I altered the original patch by removing context, I've added my
70 s-o-b.  Otherwise the original patch applied cleanly, and I left my
71 s-o-b off.