* [RFC PATCH] .gitpublish: use origin/master as default base
@ 2025-09-29 13:43 Alex Bennée
2025-09-29 14:39 ` Philippe Mathieu-Daudé
2025-09-29 19:26 ` Stefan Hajnoczi
0 siblings, 2 replies; 4+ messages in thread
From: Alex Bennée @ 2025-09-29 13:43 UTC (permalink / raw)
To: qemu-devel; +Cc: stefanha, Alex Bennée
This is very much the result of my recent fat finger but I think it's
safer to assume that origin/master points to a recent commit (or at
least a commit a given branch is based on) than master.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
.gitpublish | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/.gitpublish b/.gitpublish
index a13f8c7c0ec..a3adb21ffa1 100644
--- a/.gitpublish
+++ b/.gitpublish
@@ -4,48 +4,48 @@
# See https://github.com/stefanha/git-publish for more information
#
[gitpublishprofile "default"]
-base = master
+base = origin/master
to = qemu-devel@nongnu.org
cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit --nogit-fallback 2>/dev/null
[gitpublishprofile "rfc"]
-base = master
+base = origin/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
+base = origin/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
+base = origin/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
+base = origin/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
+base = origin/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
+base = origin/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
+base = origin/master
to = qemu-devel@nongnu.org
cc = qemu-ppc@nongnu.org
cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit --nogit-fallback 2>/dev/null
--
2.47.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [RFC PATCH] .gitpublish: use origin/master as default base
2025-09-29 13:43 [RFC PATCH] .gitpublish: use origin/master as default base Alex Bennée
@ 2025-09-29 14:39 ` Philippe Mathieu-Daudé
2025-09-29 14:52 ` Alex Bennée
2025-09-29 19:26 ` Stefan Hajnoczi
1 sibling, 1 reply; 4+ messages in thread
From: Philippe Mathieu-Daudé @ 2025-09-29 14:39 UTC (permalink / raw)
To: Alex Bennée, qemu-devel; +Cc: stefanha
On 29/9/25 15:43, Alex Bennée wrote:
> This is very much the result of my recent fat finger but I think it's
> safer to assume that origin/master points to a recent commit (or at
> least a commit a given branch is based on) than master.
>
> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> ---
> .gitpublish | 16 ++++++++--------
> 1 file changed, 8 insertions(+), 8 deletions(-)
>
> diff --git a/.gitpublish b/.gitpublish
> index a13f8c7c0ec..a3adb21ffa1 100644
> --- a/.gitpublish
> +++ b/.gitpublish
> @@ -4,48 +4,48 @@
> # See https://github.com/stefanha/git-publish for more information
> #
> [gitpublishprofile "default"]
> -base = master
> +base = origin/master
Any key to specify the remote? (not everybody have mainstream tracked
as origin).
> to = qemu-devel@nongnu.org
> cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit --nogit-fallback 2>/dev/null
>
> [gitpublishprofile "rfc"]
> -base = master
> +base = origin/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
> +base = origin/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
> +base = origin/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
> +base = origin/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
> +base = origin/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
> +base = origin/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
> +base = origin/master
> to = qemu-devel@nongnu.org
> cc = qemu-ppc@nongnu.org
> cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit --nogit-fallback 2>/dev/null
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [RFC PATCH] .gitpublish: use origin/master as default base
2025-09-29 14:39 ` Philippe Mathieu-Daudé
@ 2025-09-29 14:52 ` Alex Bennée
0 siblings, 0 replies; 4+ messages in thread
From: Alex Bennée @ 2025-09-29 14:52 UTC (permalink / raw)
To: Philippe Mathieu-Daudé; +Cc: qemu-devel, stefanha
Philippe Mathieu-Daudé <philmd@linaro.org> writes:
> On 29/9/25 15:43, Alex Bennée wrote:
>> This is very much the result of my recent fat finger but I think it's
>> safer to assume that origin/master points to a recent commit (or at
>> least a commit a given branch is based on) than master.
>> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
>> ---
>> .gitpublish | 16 ++++++++--------
>> 1 file changed, 8 insertions(+), 8 deletions(-)
>> diff --git a/.gitpublish b/.gitpublish
>> index a13f8c7c0ec..a3adb21ffa1 100644
>> --- a/.gitpublish
>> +++ b/.gitpublish
>> @@ -4,48 +4,48 @@
>> # See https://github.com/stefanha/git-publish for more information
>> #
>> [gitpublishprofile "default"]
>> -base = master
>> +base = origin/master
>
> Any key to specify the remote? (not everybody have mainstream tracked
> as origin).
I would suspect most do if they clone from the project repo - but yes if
they clone from their repo first this will be just as wrong as using
master ;-)
>
>> to = qemu-devel@nongnu.org
>> cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit --nogit-fallback 2>/dev/null
>> [gitpublishprofile "rfc"]
>> -base = master
>> +base = origin/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
>> +base = origin/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
>> +base = origin/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
>> +base = origin/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
>> +base = origin/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
>> +base = origin/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
>> +base = origin/master
>> to = qemu-devel@nongnu.org
>> cc = qemu-ppc@nongnu.org
>> cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit --nogit-fallback 2>/dev/null
--
Alex Bennée
Virtualisation Tech Lead @ Linaro
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [RFC PATCH] .gitpublish: use origin/master as default base
2025-09-29 13:43 [RFC PATCH] .gitpublish: use origin/master as default base Alex Bennée
2025-09-29 14:39 ` Philippe Mathieu-Daudé
@ 2025-09-29 19:26 ` Stefan Hajnoczi
1 sibling, 0 replies; 4+ messages in thread
From: Stefan Hajnoczi @ 2025-09-29 19:26 UTC (permalink / raw)
To: Alex Bennée; +Cc: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 472 bytes --]
On Mon, Sep 29, 2025 at 02:43:48PM +0100, Alex Bennée wrote:
> This is very much the result of my recent fat finger but I think it's
> safer to assume that origin/master points to a recent commit (or at
> least a commit a given branch is based on) than master.
>
> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> ---
> .gitpublish | 16 ++++++++--------
> 1 file changed, 8 insertions(+), 8 deletions(-)
Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-09-29 19:28 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-29 13:43 [RFC PATCH] .gitpublish: use origin/master as default base Alex Bennée
2025-09-29 14:39 ` Philippe Mathieu-Daudé
2025-09-29 14:52 ` Alex Bennée
2025-09-29 19:26 ` Stefan Hajnoczi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).