[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: (almost) deterministic patchsets
From: |
Ricardo Wurmus |
Subject: |
Re: (almost) deterministic patchsets |
Date: |
Sat, 11 May 2024 00:51:50 +0200 |
User-agent: |
mu4e 1.12.4; emacs 29.3 |
Richard Sent <richard@freakingpenguin.com> writes:
> On a related note I recently discovered that issues.guix.gnu.org does
> have a patch-set endpoint that optionally takes a revision e.g.
> issues.guix.gnu.org/issue/70XXX/patch-set/3.
It's not advertised because it was not well tested at the time. I'm
using this script to fetch and apply patch sets:
#!/bin/sh
wget -qO- https://issues.guix.gnu.org/issue/$1/patch-set/$2 | git am
--patch-format mbox -3
--
Ricardo