From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Building the igc branch on MS-Windows Date: Sat, 27 Apr 2024 09:22:59 +0300 Message-ID: <86bk5vxr24.fsf@gnu.org> References: <86il063imh.fsf@gnu.org> <86zfti101u.fsf@gnu.org> <87pluegd4z.fsf@gmail.com> <86ttjp20je.fsf@gnu.org> <87y191fwnd.fsf@gmail.com> <87cyqcfv6k.fsf@gmail.com> <86o79wzi31.fsf@gnu.org> <86mspgza23.fsf@gnu.org> <867cgkz7e2.fsf@gnu.org> <87r0esdv7o.fsf@gmail.com> <87le50dmec.fsf@gmail.com> <8734r7etu1.fsf@gmail.com> <87il03tmcp.fsf@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="28528"; mail-complaints-to="usenet@ciao.gmane.io" Cc: yantar92@posteo.net, eller.helmut@gmail.com, emacs-devel@gnu.org To: Gerd =?utf-8?Q?M=C3=B6llmann?= Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sat Apr 27 08:23:48 2024 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1s0bTO-0007Dc-Ds for ged-emacs-devel@m.gmane-mx.org; Sat, 27 Apr 2024 08:23:46 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1s0bSl-0001bE-6l; Sat, 27 Apr 2024 02:23:07 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1s0bSj-0001ap-HJ for emacs-devel@gnu.org; Sat, 27 Apr 2024 02:23:05 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1s0bSh-0000hl-Qe; Sat, 27 Apr 2024 02:23:05 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-version:References:Subject:In-Reply-To:To:From: Date; bh=LFjDm935I4Vz7yFyBNu4tHpqfsXmxC6hZVmDCPwAOr0=; b=HOi6sKy1M4ExzwYMmkoe 5wvwbbj3X+OVVfSwmMu3rU443WPIladWDDrunf/m14NLaz/prQc8F5YDuy0/C4bNevHd2aUG8EGXs Q0sAej+xZR96aEQdqAIZSt6TvRf1CIZQ6v8kCglfFnVx7Vzb6+JFxiHAb2e7B5z9LmmUtL9JS23Tm ng5FA53kP5Ypbh0VTZnljqArAWyc5b+1haKhxdDF4nfPhJVPJHyaE0i7l4wQ3CSDnyYSKtJhPeKKs IpYV1/YsMS3geev/+Wxi7Bxfvnflb4iOPI2NdYZfOxHojOXXg9fydpkhQIqPNhMv1T9j+BdqbbUm7 /xRW5hmk02Om0A==; In-Reply-To: (message from Gerd =?utf-8?Q?M=C3=B6llmann?= on Sat, 27 Apr 2024 07:26:37 +0200) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:318163 Archived-At: > From: Gerd Möllmann > Cc: Helmut Eller , Eli Zaretskii , > emacs-devel@gnu.org > Date: Sat, 27 Apr 2024 07:26:37 +0200 > > Ihor Radchenko writes: > > > Gerd Möllmann writes: > > > >> (And a wishlist entry for a debbugs-gnu-apply-patch that is just like "w > >> w" in Magit.) > > > > https://docs.kyleam.com/piem/Overview.html > > You mean piem-am? Hm, that would almost be it. Except I don't want the > branch, at least not always... Here's what I do: . mark the patch . M-| cd /path/to/git/repository && git am RET This is so simple that I wonder why people need a specialized command for that. Moreover, with command-history active, I don't need to type the command line more than once; after that M-p or M-r will find it almost immediately. (If the patch is not in the form of "git format-patch", then I need to use "git apply" instead of "git am" above, and then manually write the commit log message and commit with vc-dir, but the same manual work would be needed in that case with any fancy command as well.)