On Wed, May 27, 2026 at 11:05:02 +0200, Peter Krempa wrote:
On Wed, May 27, 2026 at 09:55:58 +0200, Peter Krempa via Devel wrote:
On Wed, May 20, 2026 at 18:47:44 +0200, Denis V. Lunev wrote:
[...]
Sigh ... I've meanwhile managed to introduce one more:
+Radoslaw Smigielski <rsmigiel@redhat.com> Radoslaw Smigielski via Devel <devel@lists.libvirt.org>
I'll add it to the patch before pushing and update the count;
I've also installed a post-applypatch script for me so that I don't mess up. I suggest for anyone reviewing upstream patches to do something similar.
$ cat .git/hooks/post-applypatch #!/bin/bash if [ "$(git show --no-patch --pretty='format:%ae')" == 'devel@lists.libvirt.org' ]; then echo '!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!' echo '! !' echo '! ERROR: munged email address in "Author" field !' echo '! !' echo '!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!' fi
Can't this be done as a push hook? Similarly to how we forbid pushing without a signed-off-by tag. Jirka