On Mon, Dec 07, 2015 at 01:27:51PM -0800, Junio C Hamano wrote: > Jeff King <peff@xxxxxxxx> writes: > > > I think one thing I was missing is that we need to just grab the > > _object_, but we need to realize that the ref needs updating[1]. So we > > cannot skip backfill of any tag that we do not already have, even if we > > already have the tag object. > > ... > > [1] I'm still puzzled why find_non_local_tags uses has_sha1_file() on > > the tag object at all, then. > > The designed semantics of auto-following tags (not necessarily as > implemented or documented, i.e. there may be implementation or > documentation bugs), I think, is to arrive at the same state as > doing a fetch (or a push) without the auto-following and then doing > a separate fetch (or a push) of tags that point at the objects that > are reachable from the tips of refs after finishing the first > (i.e. without auto-follow) fetch (or a push). In a scenario where > we already have a commit reachable from existing remote-tracking > branch and the current transfer (be it a fetch or a push, with or > without auto-follow) does not update any remote-tracking branch > (because the source side did not have any changes), if the source > side added a tag that refers to that commit that the receiving end > lacks, that tag needs to be transferred and then stored. > > So has_sha1_file() is not the right test---if anything, it needs to > be checking if the object being checked is reachable from a tip of > some ref. > > But of course, that test is rather expensive, so perhaps the > implementation cheated and uses has_sha1_file() instead? The only > case it would misidentify would be after an aborted fetch (or push) > left unconnected island of objects and some of these objects that > are not reachable are pointed at by tags the receiving end does not > have. I may have confused myself. There are actually two has_sha1_file() calls in find_non_local_tags. I agree it is the only sensible test for "do we have the commit this tag peels to, and if so, we want to grab the tag". Reachability is too expensive to compute. But for the other one ("do we have the tag object itself"), I initially claimed "if we have the tag object already, we do not have to do the backfill fetch". Which is not quite true. We have to update the ref even if we have the tag object. But then, what if we have the tag object for other reasons (e.g., because another tag points at it?). E.g. in this sequence: git -C parent commit --allow-empty -m base git -C parent tag -m mytag foo git clone parent child git -C parent update-ref refs/tags/bar foo git -C child fetch we must backfill refs/tags/bar during the fetch, even though we already have the object. I don't see any point in checking has_sha1_file() for the tagged object at all. If we don't have it, we obviously must fetch. And if we do have it, we must fetch the ref, even if that results in no objects transferred. It's entirely possible I'm just confused, and AFAICT nobody has noticed any breakage here, so please don't feel you need to spend a lot of time humoring me. I'm just writing up my confusion for posterity. :) -Peff -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html