All of lore.kernel.org
 help / color / mirror / Atom feed
* [ndctl PATCH v2] ndctl: Add CONTRIBUTING.md
@ 2018-06-28 19:48 Vishal Verma
  2018-06-29  0:47 ` Yasunori Goto
  0 siblings, 1 reply; 2+ messages in thread
From: Vishal Verma @ 2018-06-28 19:48 UTC (permalink / raw)
  To: linux-nvdimm; +Cc: Yasunori Goto

We were missing a CONTRIBUTING file to help new contributors follow the
expected guidelines. Add one that refers to the Linux Kernel for most of
these things, such as Coding style, Submitting Patches, and the DCO.

Cc: Dan Williams <dan.j.williams@intel.com>
Reviewed-by: Dan Williams <dan.j.williams@intel.com>
Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
---
 CONTRIBUTING.md | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)
 create mode 100644 CONTRIBUTING.md

diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 0000000..811a8c0
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,48 @@
+# Contributing to ndctl
+
+Thank you for taking the time to contribute to ndctl.
+
+The following is a set of guidelines that we adhere to, and request that
+contributors follow.
+
+1. The libnvdimm (kernel subsystem) and ndctl developers primarily use
+   the [linux-nvdimm](https://lists.01.org/mailman/listinfo/linux-nvdimm)
+   mailing list for everything. It is recommended to send patches to
+   **```linux-nvdimm@lists.01.org```**
+
+1. Github [issues](https://github.com/pmem/ndctl/issues) are an acceptable
+   way to report a problem, but if you just have a question,
+   [email](mailto:linux-nvdimm@lists.01.org) the above list.
+
+1. We follow the Linux Kernel [Coding Style Guide][cs] as applicable.
+
+   [cs]: https://www.kernel.org/doc/html/latest/process/coding-style.html
+
+1. We follow the Linux Kernel [Submitting Patches Guide][sp] as applicable.
+
+   [sp]: https://www.kernel.org/doc/html/latest/process/submitting-patches.html
+
+1. We follow the Linux Kernel [DCO][dco] (Developer Certificate of Origin).
+   The DCO is an attestation attached to every contribution made by every
+   developer. In the commit message of the contribution, the developer simply
+   adds a Signed-off-by statement and thereby agrees to the DCO.
+
+   [dco]: https://developercertificate.org/
+
+1. Github Pull Requests are acceptable mainly for smaller, more obvious fixups,
+   but won't be merged directly, as Github doesn't allow for the kernel style
+   flow of patches where a maintainer also signs off on the patches they apply.
+   Larger changes may need to be sent to the mailing list so that everyone gets
+   an opportunity to review them.
+
+1. **Misc Best Practices:**
+   1. Use a subject prefix of "ndctl PATCH" (or "ndctl PATCH vN" for a new
+      revision). This can be automated for a ```git format-patch``` command
+      by setting a repo-local git config setting:
+         ```git config format.subjectprefix "ndctl PATCH"```
+
+   1. For commit messages: Describe the change and why it was needed. Use a
+      concise subject line, and a blank line between the subject and the body,
+      as well as between paragraphs. Use present tense and the imperative mood
+      (e.g. "Add support for.." instead of "Added support.." or "Adding
+      support"). Word-wrap to 72 columns.
-- 
2.14.4

_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [ndctl PATCH v2] ndctl: Add CONTRIBUTING.md
  2018-06-28 19:48 [ndctl PATCH v2] ndctl: Add CONTRIBUTING.md Vishal Verma
@ 2018-06-29  0:47 ` Yasunori Goto
  0 siblings, 0 replies; 2+ messages in thread
From: Yasunori Goto @ 2018-06-29  0:47 UTC (permalink / raw)
  To: Vishal Verma; +Cc: linux-nvdimm

> We were missing a CONTRIBUTING file to help new contributors follow the
> expected guidelines. Add one that refers to the Linux Kernel for most of
> these things, such as Coding style, Submitting Patches, and the DCO.
> 
> Cc: Dan Williams <dan.j.williams@intel.com>
> Reviewed-by: Dan Williams <dan.j.williams@intel.com>
> Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
> ---
>  CONTRIBUTING.md | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 48 insertions(+)
>  create mode 100644 CONTRIBUTING.md
> 
> diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
> new file mode 100644
> index 0000000..811a8c0
> --- /dev/null
> +++ b/CONTRIBUTING.md
> @@ -0,0 +1,48 @@
> +# Contributing to ndctl
> +
> +Thank you for taking the time to contribute to ndctl.
> +
> +The following is a set of guidelines that we adhere to, and request that
> +contributors follow.
> +
> +1. The libnvdimm (kernel subsystem) and ndctl developers primarily use
> +   the [linux-nvdimm](https://lists.01.org/mailman/listinfo/linux-nvdimm)
> +   mailing list for everything. It is recommended to send patches to
> +   **```linux-nvdimm@lists.01.org```**
> +
> +1. Github [issues](https://github.com/pmem/ndctl/issues) are an acceptable
> +   way to report a problem, but if you just have a question,
> +   [email](mailto:linux-nvdimm@lists.01.org) the above list.
> +
> +1. We follow the Linux Kernel [Coding Style Guide][cs] as applicable.
> +
> +   [cs]: https://www.kernel.org/doc/html/latest/process/coding-style.html
> +
> +1. We follow the Linux Kernel [Submitting Patches Guide][sp] as applicable.
> +
> +   [sp]: https://www.kernel.org/doc/html/latest/process/submitting-patches.html
> +
> +1. We follow the Linux Kernel [DCO][dco] (Developer Certificate of Origin).
> +   The DCO is an attestation attached to every contribution made by every
> +   developer. In the commit message of the contribution, the developer simply
> +   adds a Signed-off-by statement and thereby agrees to the DCO.
> +
> +   [dco]: https://developercertificate.org/
> +
> +1. Github Pull Requests are acceptable mainly for smaller, more obvious fixups,
> +   but won't be merged directly, as Github doesn't allow for the kernel style
> +   flow of patches where a maintainer also signs off on the patches they apply.
> +   Larger changes may need to be sent to the mailing list so that everyone gets
> +   an opportunity to review them.
> +
> +1. **Misc Best Practices:**
> +   1. Use a subject prefix of "ndctl PATCH" (or "ndctl PATCH vN" for a new
> +      revision). This can be automated for a ```git format-patch``` command
> +      by setting a repo-local git config setting:
> +         ```git config format.subjectprefix "ndctl PATCH"```
> +
> +   1. For commit messages: Describe the change and why it was needed. Use a
> +      concise subject line, and a blank line between the subject and the body,
> +      as well as between paragraphs. Use present tense and the imperative mood
> +      (e.g. "Add support for.." instead of "Added support.." or "Adding
> +      support"). Word-wrap to 72 columns.
> -- 
> 2.14.4
> 

Thank you for updating!
Looks good to me.

Reviewed-by: Yasunori Goto <y-goto@jp.fujitsu.com>

---
Yasunori Goto


_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-06-29  0:47 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-28 19:48 [ndctl PATCH v2] ndctl: Add CONTRIBUTING.md Vishal Verma
2018-06-29  0:47 ` Yasunori Goto

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.