On Fri 13-04-18 17:02:17, David Hildenbrand wrote: > On 13.04.2018 15:44, Michal Hocko wrote: > > [If you choose to not CC the same set of people on all patches - which > > is sometimes a legit thing to do - then please cc them to the cover > > letter at least.] > > BTW, sorry for that. The list of people to cc was just too big to handle > manually, so I used get_maintainers.sh with git for the same time ... > something I will most likely avoid next time :) I usually have Cc: in all commits and then use the following script as --cc-cmd. You just have to git format-patch the series and then git send-email --cc-cmd=./cc-cmd.sh *.patch + some mailing lists #!/bin/bash if [[ $1 == *gitsendemail.msg* || $1 == *cover-letter* ]]; then grep '<.*@.*>' -h *.patch | sed 's/^.*: //' | sort | uniq fi -- Michal Hocko SUSE Labs