Git development
 help / color / mirror / Atom feed
From: "Philip Oakley" <philipoakley@iee.org>
To: "Jeff King" <peff@peff.net>
Cc: <mhagger@alum.mit.edu>, "Junio C Hamano" <gitster@pobox.com>,
	<git@vger.kernel.org>
Subject: Re: [PATCH 00/17] Clean up how fetch_pack() handles the heads list
Date: Thu, 23 Aug 2012 23:09:27 +0100	[thread overview]
Message-ID: <40BA082AE16542A8B5E1F83167322A1B@PhilipOakley> (raw)
In-Reply-To: 20120823195648.GB15268@sigill.intra.peff.net

From: "Jeff King" <peff@peff.net>
Sent: Thursday, August 23, 2012 8:56 PM
> On Thu, Aug 23, 2012 at 08:13:29PM +0100, Philip Oakley wrote:
>
>> >>I'm still suspicious about the logic related to args.fetch_all and
>> >>args.depth, but I don't think I've made anything worse.
>> >
>> >I think the point of that is that when doing "git fetch-pack --all
>> >--depth=1", the meaning of "--all" is changed from "all refs" to
>> >"everything but tags".
>> >
>>
>> There is a comment in \git\Documentation\technical\shallow.txt that
>> "- If you deepen a history, you'd want to get the tags of the
>>  newly stored (but older!) commits. This does not work right now."
>> which may be the source of this restriction. That is, how is the 
>> depth
>> of the tag fetching to be restricted to the requested depth count?
>> [assuming I've undestood the problem correctly]
>
> I don't think this is about deepening, but rather about making sure we
> remain shallow for the initial fetch. Remember that this is on the
> "fetch-pack --all" code path, which used to be used by "git clone" 
> when
> it was a shell script (these days, clone is a C builtin and will
> actually feed the list of refs to fetch-pack).

OK

>
> This code blames back to:
>
> commit 4bcb310c2539b66d535e87508d1b7a90fe29c083
> Author: Alexandre Julliard <julliard@winehq.org>
> Date:   Fri Nov 24 16:00:13 2006 +0100
>
>    fetch-pack: Do not fetch tags for shallow clones.
>
>    A better fix may be to only fetch tags that point to commits that 
> we
>    are downloading, but git-clone doesn't have support for following
>    tags. This will happen automatically on the next git-fetch though.
>
> So it is about making sure that "git clone --depth=1" does not
> accidentally pull a single commit from v1.0, v1.1, v1.2, and so forth,
> losing the purpose of using --depth in the first place. These days it 
> is
> largely irrelevant, since this code path is not followed by clone, and
> clone will automatically restrict its list of fetched refs to a single
> branch if --depth is used.
>
> The bug that shallow.txt talks about (and which is mentioned in that
> commit message) is that we will not properly auto-follow tags during
> such a clone (i.e., when we fetch a tag because it is pointing to a
> commit that we already have or are already pulling). I'm not sure if
> that is still the case or not. But assuming your workflow is something
> like:
>
>  [make an initial, cheap clone]
>  git clone --depth=1 $repo
>
>  [the next day, you do a regular fetch, which will just get new stuff
>   on top of what you already have]
>  git fetch
>
> Then that second fetch will auto-follow the tags, anyway. And that is
> what the commit message is pointing: it's a bug, but one you can work
> around.

I hadn't appreciated that the fetch would limit itself to the original 
shallow
depth. I'd gained  the impression that one need to use the --depth to
control what was being fetched.

>
>> It may be (?) that it is a good time to think about a 'datedepth'
>> capability to bypass the current counted-depth shallow fetch that can
>> cause so much trouble. With a date limited depth the relevant tags
>> could also be fetched.
>
> I don't have anything against such an idea, but I think it is 
> orthogonal
> to the issue being discussed here.
OK. I'll stick it on my slow-burner pile ;-)

>
> -Peff

  parent reply	other threads:[~2012-08-23 22:09 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-08-23  8:10 [PATCH 00/17] Clean up how fetch_pack() handles the heads list mhagger
2012-08-23  8:10 ` [PATCH 01/17] t5500: add tests of error output for missing refs mhagger
2012-08-23  8:10 ` [PATCH 02/17] Rename static function fetch_pack() to http_fetch_pack() mhagger
2012-08-23  8:10 ` [PATCH 03/17] Fix formatting mhagger
2012-08-23  8:10 ` [PATCH 04/17] Name local variables more consistently mhagger
2012-08-23  8:39   ` Jeff King
2012-08-24  7:05     ` Michael Haggerty
2012-08-26 17:39     ` Junio C Hamano
2012-08-27  9:22       ` Michael Haggerty
2012-08-27  9:25         ` Jeff King
2012-08-27 16:55           ` Junio C Hamano
2012-08-27 16:50         ` Junio C Hamano
2012-08-23  8:10 ` [PATCH 05/17] Do not check the same match_pos twice mhagger
2012-08-23  8:42   ` Jeff King
2012-08-23  8:10 ` [PATCH 06/17] Let fetch_pack() inform caller about number of unique heads mhagger
2012-08-23  8:54   ` Jeff King
2012-08-25  5:05     ` Michael Haggerty
2012-08-23  8:10 ` [PATCH 07/17] Pass nr_heads to do_pack_ref() by reference mhagger
2012-08-23  8:10 ` [PATCH 08/17] Pass nr_heads to everything_local() " mhagger
2012-08-23  8:10 ` [PATCH 09/17] Pass nr_heads to filter_refs() " mhagger
2012-08-23  8:10 ` [PATCH 10/17] Remove ineffective optimization mhagger
2012-08-23  8:10 ` [PATCH 11/17] filter_refs(): do not leave gaps in return_refs mhagger
2012-08-23  8:10 ` [PATCH 12/17] filter_refs(): compress unmatched refs in heads array mhagger
2012-08-23  8:10 ` [PATCH 13/17] cmd_fetch_pack: return early if finish_connect() returns an error mhagger
2012-08-23  8:10 ` [PATCH 14/17] Report missing refs even if no existing refs were received mhagger
2012-08-23  8:10 ` [PATCH 15/17] cmd_fetch_pack(): simplify computation of return value mhagger
2012-08-23  8:10 ` [PATCH 16/17] fetch_pack(): free matching heads mhagger
2012-08-23  9:04   ` Jeff King
2012-08-23  8:10 ` [PATCH 17/17] fetch_refs(): simplify logic mhagger
2012-08-23  9:07   ` Jeff King
2012-08-25  6:37     ` Michael Haggerty
2012-08-23  9:26 ` [PATCH 00/17] Clean up how fetch_pack() handles the heads list Jeff King
2012-08-23 19:13   ` Philip Oakley
2012-08-23 19:56     ` Jeff King
2012-08-23 20:31       ` Jeff King
2012-08-25  7:05         ` Michael Haggerty
2012-09-02  7:02         ` Michael Haggerty
2012-08-23 22:09       ` Philip Oakley [this message]
2012-08-24  4:23       ` Junio C Hamano
2012-08-24 12:46         ` Philip Oakley

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=40BA082AE16542A8B5E1F83167322A1B@PhilipOakley \
    --to=philipoakley@iee.org \
    --cc=git@vger.kernel.org \
    --cc=gitster@pobox.com \
    --cc=mhagger@alum.mit.edu \
    --cc=peff@peff.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox