On 01/31/2018 12:33 AM, Fam Zheng wrote: > git-publish [1] is a convenient tool to send patches and has been > popular among QEMU developers. Recently it has been made available in > Fedora official repo thanks to Stefan's work. > > One nice feature of the tool is a per-project configuration with > profiles, especially in which the cccmd option is a handy method to > create the Cc list. > > [1]: https://github.com/stefanha/git-publish > > Signed-off-by: Fam Zheng <f...@redhat.com> > --- > .gitpublish | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 57 insertions(+) > create mode 100644 .gitpublish > > diff --git a/.gitpublish b/.gitpublish > new file mode 100644 > index 0000000000..2099c1520f > --- /dev/null > +++ b/.gitpublish > @@ -0,0 +1,57 @@ > +# > +# Common git-publish profiles that can be used to send patches to QEMU > upstream. > +# > +# See https://github.com/stefanha/git-publish for more information > +# > +[gitpublishprofile "qemu"] > +base = master > +prefix = PATCH > +to = qemu-devel@nongnu.org > +cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit > --nogit-fallback 2>/dev/null > + > +[gitpublishprofile "qemu-rfc"] > +base = master > +prefix = RFC PATCH > +to = qemu-devel@nongnu.org > +cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit > --nogit-fallback 2>/dev/null > + > +[gitpublishprofile "qemu-stable"] > +base = master > +prefix = PATCH > +to = qemu-devel@nongnu.org > +cc = qemu-sta...@nongnu.org > +cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit > --nogit-fallback 2>/dev/null > + > +[gitpublishprofile "qemu-trivial"] > +base = master > +prefix = PATCH > +to = qemu-devel@nongnu.org > +cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit > --nogit-fallback 2>/dev/null > + > +[gitpublishprofile "qemu-block"] > +base = master > +prefix = PATCH > +to = qemu-devel@nongnu.org > +cc = qemu-bl...@nongnu.org > +cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit > --nogit-fallback 2>/dev/null > + > +[gitpublishprofile "qemu-arm"] > +base = master > +prefix = PATCH > +to = qemu-devel@nongnu.org > +cc = qemu-...@nongnu.org > +cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit > --nogit-fallback 2>/dev/null > + > +[gitpublishprofile "qemu-s390"] > +base = master > +prefix = PATCH > +to = qemu-devel@nongnu.org > +cc = qemu-s...@nongnu.org > +cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit > --nogit-fallback 2>/dev/null > + > +[gitpublishprofile "qemu-ppc"] > +base = master > +prefix = PATCH > +to = qemu-devel@nongnu.org > +cc = qemu-...@nongnu.org > +cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit > --nogit-fallback 2>/dev/null >
Awesome!!