From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id 2CogN6wQ2GMggyUAWB0awg (envelope-from ) for ; Mon, 30 Jan 2023 13:47:08 -0500 Received: by simark.ca (Postfix, from userid 112) id DD95E1E128; Mon, 30 Jan 2023 13:47:08 -0500 (EST) X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-5.2 required=5.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_MED,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.6 Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 4D88F1E0D3 for ; Mon, 30 Jan 2023 13:47:08 -0500 (EST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 3AD5E3858428 for ; Mon, 30 Jan 2023 18:47:07 +0000 (GMT) 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-BeenThere: gdb@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: gdb-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb" 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