diff mbox series

[ovs-dev] faq: Add information about git-pw.

Message ID 20190327185810.1001-1-ktraynor@redhat.com
State Changes Requested
Headers show
Series [ovs-dev] faq: Add information about git-pw. | expand

Commit Message

Kevin Traynor March 27, 2019, 6:58 p.m. UTC
git-pw is similar to pwclient but it can apply series directly.

Signed-off-by: Kevin Traynor <ktraynor@redhat.com>
---
 Documentation/faq/contributing.rst | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

Comments

0-day Robot March 27, 2019, 8:28 p.m. UTC | #1
Bleep bloop.  Greetings Kevin Traynor, I am a robot and I have tried out your patch.
Thanks for your contribution.

I encountered some error that I wasn't expecting.  See the details below.


build:
reading sources... [ 87%] topics/ovsdb-replication
reading sources... [ 88%] topics/porting
reading sources... [ 89%] topics/role-based-access-control
reading sources... [ 90%] topics/testing
reading sources... [ 91%] topics/tracing
reading sources... [ 92%] topics/windows
reading sources... [ 92%] tutorials/faucet
reading sources... [ 93%] tutorials/index
reading sources... [ 94%] tutorials/ipsec
reading sources... [ 95%] tutorials/ovn-ipsec
reading sources... [ 96%] tutorials/ovn-openstack
reading sources... [ 97%] tutorials/ovn-rbac
reading sources... [ 98%] tutorials/ovn-sandbox
reading sources... [ 99%] tutorials/ovs-advanced
reading sources... [100%] tutorials/ovs-conntrack


Warning, treated as error:
/var/lib/jenkins/jobs/upstream_build_from_pw/workspace/Documentation/faq/contributing.rst:184: ERROR: Inconsistent literal block quoting.

make[2]: *** [docs-check] Error 1
make[2]: Leaving directory `/var/lib/jenkins/jobs/upstream_build_from_pw/workspace'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/var/lib/jenkins/jobs/upstream_build_from_pw/workspace'
make: *** [all] Error 2


Please check this out.  If you feel there has been an error, please email aconole@bytheb.org

Thanks,
0-day Robot
diff mbox series

Patch

diff --git a/Documentation/faq/contributing.rst b/Documentation/faq/contributing.rst
index d8de9a49e..1dd4f653f 100644
--- a/Documentation/faq/contributing.rst
+++ b/Documentation/faq/contributing.rst
@@ -171,2 +171,21 @@  Q: How do I apply patches from email?
    certain patches that contain form-feeds, due to a limitation of the protocol
    underlying ``pwclient``.)
+
+   Another way to apply patches directly from patchwork which supports applying
+   patch series is to use the ``git-pw`` program. It can be obtained with
+   ``pip install git-pw``. Alternative installation instructions and general
+   documentation can be found at
+   https://patchwork.readthedocs.io/projects/git-pw/en/latest/. You need to
+   use your openvswitch patchwork login or create one at
+   https://patchwork.ozlabs.org/register/. The following can then be set on
+   the command line with ``git config`` or through a ``.gitconfig``::
+
+   [pw]
+   server=https://patchwork.ozlabs.org/api/1.0
+   project=openvswitch
+   username=<username>
+   password=<password>
+
+   Patch series can be listed with ``git-pw series list`` and applied with
+   ``git-pw series apply #``, where # is the series number. Individual patches
+   can be applied with ``git-pw patch apply #``, where # is the patch number.