From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gnu.wildebeest.org (gnu.wildebeest.org [45.83.234.184]) by sourceware.org (Postfix) with ESMTPS id E514E3858C20 for ; Mon, 30 Jan 2023 18:46:51 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org E514E3858C20 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=klomp.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=klomp.org Received: by gnu.wildebeest.org (Postfix, from userid 1000) id 2777E30067B1; Mon, 30 Jan 2023 19:46:51 +0100 (CET) Date: Mon, 30 Jan 2023 19:46:51 +0100 From: Mark Wielaard To: Lancelot SIX Cc: Tom Tromey , Luis Machado , Simon Marchi , "gdb@sourceware.org" , John Baldwin Subject: Re: Any concrete plans after the GDB BoF? Message-ID: <20230130184651.GG11361@gnu.wildebeest.org> References: <83485199-965e-7ff5-1dc8-d027b74b56f7@arm.com> <20230101220250.GA11041@gnu.wildebeest.org> <87tu0lxgee.fsf@tromey.com> <87bkmtx83b.fsf@tromey.com> <20230127155016.zchm4tsawlkdfyne@ubuntu.lan> <87mt63ilkm.fsf@tromey.com> <20230130174318.m2itnzacnbbtxdl6@ubuntu.lan> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20230130174318.m2itnzacnbbtxdl6@ubuntu.lan> User-Agent: Mutt/1.5.21 (2010-09-15) X-Spam-Status: No, score=-3031.8 required=5.0 tests=BAYES_00,JMQ_SPF_NEUTRAL,KAM_DMARC_STATUS,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=no autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Hi, On Mon, Jan 30, 2023 at 05:43:18PM +0000, Lancelot SIX wrote: > > Lancelot> That being said, I still use git-pw to fetch and apply patch and series. > > Lancelot> This is really convenient when I am not working on the host where I have > > Lancelot> my mail client. > > > > Have you tried b4 instead? I haven't yet but it seems like the same > > thing but without needing patchwork, just public inbox. > > > > https://b4.docs.kernel.org/en/latest/index.html > > I haven't yet either. For now git-pw seems to allow me to do what I am > trying to achieve. I'll still try to have a closer look at b4 to check > if it can provide a better experience. b4 acts a little different from git-pw. It uses Message-IDs to fetch patches (and/or a whole thread as mbox). So it helps if your mta displays those prominently. If you use emacs you might be interested in piem: https://git.kyleam.com/piem/about/ For gdb-patches you want to add the following to your .git/config: [b4] midmask = https://inbox.sourceware.org/gdb-patches/%s linkmask = https://inbox.sourceware.org.org/gdb-patches/%s There is a command line example in this presentation: https://gnu.wildebeest.org/~mark/fsf-sourceware/presentation.html#slide14 The latest b4 can also interact with patchwork, but I haven't tried that out yet. The new settings are described at: https://b4.docs.kernel.org/en/latest/config.html#patchwork-integration-settings Cheers, Mark