On Wed, Feb 23 2022, Derrick Stolee via GitGitGadget wrote: > From: Derrick Stolee <derrickstolee@xxxxxxxxxx> > [...] > @@ -460,6 +463,10 @@ static int cmd_bundle_fetch(int argc, const char **argv, const char *prefix) > (!info->filter_str || strcasecmp(filter, info->filter_str))) > continue; > > + old_uri = info->uri; > + info->uri = relative_url(bundle_uri, info->uri, NULL); > + free(old_uri); > + I had it on my TODO to look into how to do this, and hadn't dug yet, it's really pleasing that we have an API to make it this simple.