From patchwork Sun Jun 12 11:40:07 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Heinrich Schuchardt X-Patchwork-Id: 112675 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id F2AECA055C; Sun, 12 Jun 2022 13:40:18 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9081840150; Sun, 12 Jun 2022 13:40:18 +0200 (CEST) Received: from smtp-relay-canonical-1.canonical.com (smtp-relay-canonical-1.canonical.com [185.125.188.121]) by mails.dpdk.org (Postfix) with ESMTP id 7B905400EF for ; Sun, 12 Jun 2022 13:40:16 +0200 (CEST) Received: from LT2ubnt.fritz.box (ip-062-143-094-109.um16.pools.vodafone-ip.de [62.143.94.109]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by smtp-relay-canonical-1.canonical.com (Postfix) with ESMTPSA id 2193E3FE6E; Sun, 12 Jun 2022 11:40:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=canonical.com; s=20210705; t=1655034015; bh=BD8sEaLi03VfW+kjVmvaEo7Kg7b1AwXp43FSIqxADOU=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=amjhR0STnXUDu+Thnjfo2si7IMBqpQEDTeFEKd0PPOWw5OwWPQWOuxM06i0NYbU/7 qPbVQauLsQWzYBySJGGIIf67EWREKe+5JRe26+zGal9fWHecZDdBbnnVQeW5DU2KI8 16P6T8IUE0slHSOS6g1Q3gCb+krUfKn4qKQ5IEsHRrInng2tgbluYY5Qt5+N/ry3IB NqWqJxbJQR1sZlPBOXhLyTpfQcRK4ZJrqryoY4ZgNNd1a8vhYf9Q4/GUc+7nEz4/aK 1je7oJSmrHZzi7vHlsOZ7wyH6G6R534DndlErONcnZJrvWgfKC5UcdNi2V/k6OTcnR ssX1bTy/fXxag== From: Heinrich Schuchardt To: dev@dpdk.org Cc: Adrien Mazarguil , Harry van Haaren , Thomas Monjalon , John McNamara , Heinrich Schuchardt Subject: [PATCH 1/1] doc: add author name on cc to git fixline alias Date: Sun, 12 Jun 2022 13:40:07 +0200 Message-Id: <20220612114007.23012-1-heinrich.schuchardt@canonical.com> X-Mailer: git-send-email 2.36.1 MIME-Version: 1.0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org We should add both the author name and the author email address to the Cc: line of a blamed patch. Fixes: f9ef083c6cfe ("doc: add author on cc to git fixline alias") Cc: Harry van Haaren Signed-off-by: Heinrich Schuchardt --- doc/guides/contributing/patches.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/contributing/patches.rst b/doc/guides/contributing/patches.rst index bebcaf3925..aad2429e58 100644 --- a/doc/guides/contributing/patches.rst +++ b/doc/guides/contributing/patches.rst @@ -260,7 +260,7 @@ Here are some guidelines for the body of a commit message: You can generate the required lines using the following git alias, which prints the commit SHA and the author of the original code:: - git config alias.fixline "log -1 --abbrev=12 --format='Fixes: %h (\"%s\")%nCc: %ae'" + git config alias.fixline "log -1 --abbrev=12 --format='Fixes: %h (\"%s\")%nCc: %an <%ae>'" The output of ``git fixline `` must then be added to the commit message::