Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934510AbcDMNdw (ORCPT ); Wed, 13 Apr 2016 09:33:52 -0400 Received: from mail-wm0-f68.google.com ([74.125.82.68]:33130 "EHLO mail-wm0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1760739AbcDMNdu (ORCPT ); Wed, 13 Apr 2016 09:33:50 -0400 Date: Wed, 13 Apr 2016 15:33:47 +0200 From: Michal Hocko To: Vineet Gupta Cc: lkml , "linux-mm@kvack.org" , git@vger.kernel.org Subject: Re: CC in git cover letter vs patches (was Re: [PATCH 0/19] get rid of superfluous __GFP_REPORT) Message-ID: <20160413133347.GJ14351@dhcp22.suse.cz> References: <1460372892-8157-1-git-send-email-mhocko@kernel.org> <570E2BC1.8050809@synopsys.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <570E2BC1.8050809@synopsys.com> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1212 Lines: 39 On Wed 13-04-16 16:51:37, Vineet Gupta wrote: > Trimming CC list + CC git folks > > Hi Michal, > > On Monday 11 April 2016 04:37 PM, Michal Hocko wrote: > > Hi, > > this is the second version of the patchset previously sent [1] > > I have a git question if you didn't mind w.r.t. this series. Maybe there's an > obvious answer... I'm using git 2.5.0 > > I was wondering how you manage to union the individual patch CC in just the cover > letter w/o bombarding everyone with everything. I am using the following flow: $ rm *.patch $ for format-patch range $ git send-email [--to resp. --cc for all patches] --cc-cmd ./cc-cmd-only-cover.sh --compose *.patch $ cat ./cc-cmd-only-cover.sh #!/bin/bash # --compose with generate *gitsendemail.msg file # --cover-letter expects *cover-letter* file if [[ $1 == *gitsendemail.msg* || $1 == *cover-letter* ]]; then grep '<.*@.*>' -h *.patch | sed 's/^.*: //' | sort | uniq fi it is a little bit coarse and it would be great if git had a default option for that but this seems to be working just fine for patch-bombs where the recipients only have to care about their parts and the cover for the overal idea of the change. HTH -- Michal Hocko SUSE Labs