mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-02 09:31:55 +00:00
08bb160e02
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/Debian official repo. 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 <famz@redhat.com> Message-id: 20180226030326.20219-2-famz@redhat.com Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
51 lines
1.6 KiB
Text
51 lines
1.6 KiB
Text
#
|
|
# 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 "default"]
|
|
base = master
|
|
to = qemu-devel@nongnu.org
|
|
cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit --nogit-fallback 2>/dev/null
|
|
|
|
[gitpublishprofile "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 "stable"]
|
|
base = master
|
|
to = qemu-devel@nongnu.org
|
|
cc = qemu-stable@nongnu.org
|
|
cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit --nogit-fallback 2>/dev/null
|
|
|
|
[gitpublishprofile "trivial"]
|
|
base = master
|
|
to = qemu-devel@nongnu.org
|
|
cc = qemu-trivial@nongnu.org
|
|
cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit --nogit-fallback 2>/dev/null
|
|
|
|
[gitpublishprofile "block"]
|
|
base = master
|
|
to = qemu-devel@nongnu.org
|
|
cc = qemu-block@nongnu.org
|
|
cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit --nogit-fallback 2>/dev/null
|
|
|
|
[gitpublishprofile "arm"]
|
|
base = master
|
|
to = qemu-devel@nongnu.org
|
|
cc = qemu-arm@nongnu.org
|
|
cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit --nogit-fallback 2>/dev/null
|
|
|
|
[gitpublishprofile "s390"]
|
|
base = master
|
|
to = qemu-devel@nongnu.org
|
|
cc = qemu-s390@nongnu.org
|
|
cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit --nogit-fallback 2>/dev/null
|
|
|
|
[gitpublishprofile "ppc"]
|
|
base = master
|
|
to = qemu-devel@nongnu.org
|
|
cc = qemu-ppc@nongnu.org
|
|
cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit --nogit-fallback 2>/dev/null
|