123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #
- # 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
|