> On Mon, Jul 30, 2018 at 03:56:01PM -0700, Jonathan Tan wrote: > > > Commit 989b8c4452 ("fetch-pack: put shallow info in output parameter", > > 2018-06-28) allows transports to report the refs that they have fetched > > in a new out-parameter "fetched_refs". If they do so, > > transport_fetch_refs() makes this information available to its caller. > > > > Because transport_fetch_refs() filters the refs sent to the transport, > > it cannot just report the transport's result directly, but first needs > > to readd the excluded refs, pretending that they are fetched. However, > > this results in a wrong result if the transport did not report the refs > > that they have fetched in "fetched_refs" - the excluded refs would be > > added and reported, presenting an incomplete picture to the caller. > > This part leaves me confused. If we are not fetching them, then why do > we need to pretend that they are fetched? The short answer is that we need: (1) the complete list of refs that was passed to transport_fetch_refs(), (2) with shallow information (REF_STATUS_REJECT_SHALLOW set if relevant), and (3) with updated OIDs if ref-in-want was used. The fetched_refs out param already fulfils (2) and (3), and this patch makes it fulfil (1). As for calling them fetched_refs, perhaps that is a misnomer, but they do appear in FETCH_HEAD even though they are not truly fetched. Which raises the question...if completeness is so important, why not reuse the input list of refs and document that transport_fetch_refs() can mutate the input list? You ask the same question below, so I'll put the answer after quoting your paragraph. > I think I am showing my lack of understanding about the reason for this > whole "return the fetched refs" scheme from 989b8c4452, and probably > reading the rest of that series would make it more clear. But from the > perspective of somebody digging into history and finding just this > commit, it probably needs to lay out a little more of the reasoning. I think it's because 989b8c4452 is based on my earlier work [1] which also had a fetched_refs out param. Its main reason is to enable the invoker of transport_fetch_refs() to specify ref patterns (as you can see in a later commit in the same patch set [2]) - and if we specify patterns, the invoker of transport_fetch_refs() needs the resulting refs (which are provided through fetched_refs). In the version that made it to master, however, there was some debate about whether ref patterns need to be allowed. In the end, ref patterns were not allowed [3], but the fetched_refs out param was still left in. I think that reverting the API might work, but am on the fence about it. It would reduce the number of questions about the code (and would probably automatically fix the issue that I was fixing in the first place), but if we were to revert the API and then decide that we do want ref patterns in "want-ref" (or expand transport_fetch_refs in some similar way), we would need to revert our revert, causing code churn. [1] https://public-inbox.org/git/86a128c5fb710a41791e7183207c4d64889f9307.1485381677.git.jonathantanmy@xxxxxxxxxx/ [2] https://public-inbox.org/git/eef2b77d88df0db08e4a1505b06e0af2d40143d5.1485381677.git.jonathantanmy@xxxxxxxxxx/ [3] https://public-inbox.org/git/20180620213235.10952-1-bmwill@xxxxxxxxxx/