From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f43.google.com (mail-wm0-f43.google.com [74.125.82.43]) by dpdk.org (Postfix) with ESMTP id BCDD34AAD for ; Wed, 27 Jul 2016 14:15:41 +0200 (CEST) Received: by mail-wm0-f43.google.com with SMTP id q128so210070349wma.1 for ; Wed, 27 Jul 2016 05:15:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=UfNmcbEg/bE7xi88qGP57QN5b0GXCXW+nSg8NPJJZyc=; b=nEKdI9SWvLpzFt3mRiuGNqxcgdpi1Km0Z5uvDtjEAR2eaYFqrTPW0NoisRrU1NsCHc krTjmOFAvN0t3QbG4i7lrlX6ddahErjJEr3IhP+Z2oTK5QZieLlmlnGAUZ0fG2N7oYWk Up0uz/RDeFshNPs/nW3l2RRaS1o5zd7ql0WFTWSYsBzCT6/uhPY0pwyeCJKXiTWJKOK1 zL5/gqH0uxJ1MD+LZ4QZUgdF1ZpIepFh8MoTzoTi1LzOZRWa5w77lf41W7nupsjnQxYx MZdNGrjPnKVlDVtD/L2dmbS9/DdjlfKgnSqrRWRl7BYCCmdAD/iIiA52akdGEjOltyrR ek/Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=UfNmcbEg/bE7xi88qGP57QN5b0GXCXW+nSg8NPJJZyc=; b=KoeD6iyFowLLUwf2B/0TC/053QJZOWYpLvsj9SDy9/m7fBsbFlLWj4TCf5Tcj+yGB3 q2Dfy9BQ9AtM8KOfTmvbh+EmoSB+nE3xh0xvl9zfPnZWr+LpNE99RbkS2EyYIZMt0DWM +OVoSMnGEj25GdjuaeVpLcSVEATQI5gClTyp+qCyl/exW5haSyoivOeOLDhDS1ZQqfmI nEwcTSK78rz718VB+VdnikkWiUb1zF607QxbKCPTBM6nIy+l9i+UGHu1xk/0ObTwGrm3 o2wLpiXI+FjNdUatgVGnMMVjtVpPJ16tdv20IBdBURb9+qirim5ZuFupi99d39wdkks4 +Skw== X-Gm-Message-State: AEkoout2REdzzNYm5oq9abAHREBt52LmaAl7zwcDe4uA/+6b26AeISgOV0qOyTmg/3B+A4cQ X-Received: by 10.194.248.33 with SMTP id yj1mr19108949wjc.158.1469621741524; Wed, 27 Jul 2016 05:15:41 -0700 (PDT) Received: from ping.vm.6wind.com (guy78-3-82-239-227-177.fbx.proxad.net. [82.239.227.177]) by smtp.gmail.com with ESMTPSA id x133sm6869401wmf.16.2016.07.27.05.15.40 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 27 Jul 2016 05:15:41 -0700 (PDT) From: Nelio Laranjeiro To: web@dpdk.org Cc: thomas.monjalon@6wind.com Date: Wed, 27 Jul 2016 14:15:21 +0200 Message-Id: <1469621722-754-2-git-send-email-nelio.laranjeiro@6wind.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1469621722-754-1-git-send-email-nelio.laranjeiro@6wind.com> References: <1469621722-754-1-git-send-email-nelio.laranjeiro@6wind.com> Subject: [dpdk-web] [PATCH 2/3] add alternative to send another patch version X-BeenThere: web@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: website maintenance List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Jul 2016 12:15:41 -0000 Some versions of git send-emails does not have -v option, adding it on this page helps user memory to work around this using git format-patch. Signed-off-by: Nelio Laranjeiro --- dev.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev.html b/dev.html index 2261aa1..bee2640 100644 --- a/dev.html +++ b/dev.html @@ -89,6 +89,12 @@ a version number and changelog annotations are helpful:
git send-email -1 -v2 --annotate --in-reply-to <Message-ID of the previous patch>
 --to dev@dpdk.org --cc <everybody discussing the patch>
+

Another possibility is to use git format-patch: +

git format-patch -1 --subject-prefix="PATCH v2"
+--in-reply-to <Message-ID of the previous patch>
+

Then use send email: +

git send-email --to dev@dpdk.org --cc <everybody discussing
+the patch> <patch files>

Annotations take place after the 3 dashes and should explicit what has changed since the previous version.

In the case of a bug reported on the mailing list, the patch should be a reply to the bug report. -- 2.1.4