From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yuanhan Liu Subject: [PATCH] devtools: make commits with stable tag outstanding Date: Thu, 23 Feb 2017 10:49:32 +0800 Message-ID: <1487818172-12910-1-git-send-email-yuanhan.liu@linux.intel.com> Cc: Thomas Monjalon , Yuanhan Liu To: dev@dpdk.org Return-path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 1FE7D5A44 for ; Thu, 23 Feb 2017 03:47:21 +0100 (CET) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" So that, as a stable maintainer while picking commits to a stable release, I could pay less attention to those have it and pay more attention to those don't have it. Signed-off-by: Yuanhan Liu --- devtools/git-log-fixes.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/devtools/git-log-fixes.sh b/devtools/git-log-fixes.sh index d590735..af489a5 100755 --- a/devtools/git-log-fixes.sh +++ b/devtools/git-log-fixes.sh @@ -116,5 +116,7 @@ while read id headline ; do else origver='N/A' fi - printf '%s %7s %s (%s)\n' $version $id "$headline" "$origver" + stable="-" + git show $id | grep -qi 'Cc: .*stable@dpdk.org' && stable="S" + printf '%s %7s %s %s (%s)\n' $version $id $stable "$headline" "$origver" done -- 1.9.0