Richard Sent <rich...@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