On Fri, Jan 17, 2020 at 11:13:10AM -0800, Junio C Hamano wrote: > > Add a --[no-]update-remote-refs option to 'git fetch' which defaults > > to the existing behavior of updating the remote refs. This allows > > a user to run > > > > git fetch <remote> --no-update-remote-refs +refs/heads/*:refs/hidden/* > > > > to populate a custom ref space and download a pack of the new > > reachable objects. > > Hmph. I have to wonder if this should have been the default. That > is, when refs/heads/X on the remote is configured to be copied to > refs/remotes/origin/X on this side, and an explicit refspec says it > should go some other place (i.e. refs/hidden/X), shouldn't that > automatically bypass configured +refs/heads/*:refs/remotes/origin/* > refspec? In any case, it is too late to change that now. It used to be the default. You can blame 2013-me. ;) Before that, though, we had people complaining the other way ("I just fetched from the remote, but my tracking ref is stale!"). > > 3. With fetch.writeCommitGraph enabled, the refs/hidden refs are > > used to update the commit-graph file. > > I have a moderately strong suspicion that it would be better to make > this "--ignore-configured-refspecs" and implemented without special > casign the "refs/remotes/" hierarchy like the code does by > hardcoding. Yeah, I just independently wrote something similar. Your "--refmap" option can accomplish that already. > I also wonder if auto-following of tags should be disabled at the > same time. I have no good argument either way (yet). I _didn't_ think of tag auto-following in my other response. That's a good point. I think he'd probably just want to use "--no-tags" for the background fetch. You'd end up having to fetch the tag objects themselves during the "real" fetch, but presumably they're very small compared to the rest of history. You could also do: git fetch --refmap= <remote> +refs/heads/*:refs/hidden/heads/* +refs/tags/*:refs/hidden/tags/* to get everything in your pre-fetch (though you actually get more than the real fetch would need, since by default it won't grab tags which don't point to otherwise-reachable history). -Peff