git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Bryan Turner <bturner@atlassian.com>
To: Sankar P <sankar.curiosity@gmail.com>
Cc: Git Users <git@vger.kernel.org>
Subject: Re: Git clone question
Date: Tue, 7 Apr 2020 13:01:09 -0700	[thread overview]
Message-ID: <CAGyf7-GVYMXKpptZ8w3tcZAKp41j5_EDe9kp6YcDp7=S4LuVpQ@mail.gmail.com> (raw)
In-Reply-To: <CAMSEaH5eZdNooNHQJAto_0dCZSFtiji8ZYvft+oZQXfzDHSyEg@mail.gmail.com>

On Tue, Apr 7, 2020 at 11:21 AM Sankar P <sankar.curiosity@gmail.com> wrote:
>
> Hi
>
> I am trying to understand about git clone.
>
> From the few git videos that I have watched and using git, I
> understand that git stores the difference between each version, as an
> object, with the sha of the diff as the way to address the object.

This is not correct. Git stores full objects, not diffs/patches, and
the SHA is of the full object contents, not the changes to those
contents versus the previous contents.

Objects are stored compressed (using libz). In addition to
compression, when objects are packed Git can use a technique called
"delta compression" to allow it to build one object in terms of
another. This is something like a diff/patch, but it's not the delta
that gets hashed; it's the full object (before and after).

>
> However, what is not clear to me is, how does `git clone` then work ?
> If a repository has a thousand commits, do we download all the
> thousand objects to the client system and then apply them one on top
> of the other ? I am sure that must not be the case because the `git
> clone` operation completes so fast, and I doubt if my disks are that
> fast.

Between libz compression and delta compression the pack file
containing all of those objects tends to be substantially smaller than
the full set of objects.

>
> However, when I do a `git clone` I could see the history until the first commit.

Yes, when cloning by default you receive all the objects in the
history of the repository and, as you note below, you can also perform
a "shallow clone" to limit what you get to some specific depth. Newer
versions of Git are also working on introducing the concept of a
"partial clone", where some types of objects (large files, for
example) are not downloaded up front and are instead downloaded on
first access. This isn't yet widely supported, though.

>
> I can also partially ignore the history and clone only the last N
> commits history too. So my question is, how does `git clone` work
> under the hood and how is it so fast ? Does the git server save the
> expanded git tree (with all the git patches applied) and we just
> transfer them when we do the `git clone` ?

As noted above, there's no "patching" going on. The server does store
a packfile, though, and depending on how recently the pack was created
it can reuse substantial portions of that pack when creating a pack to
serve the clone.

>
> Are there any good talks / papers / books on the internals of the
> working of git ?

Have you checked https://git-scm.com/book/en/v2 ?

>
> Thanks.
>
>
> --
> Sankar P
> http://psankar.blogspot.com

  reply	other threads:[~2020-04-07 20:01 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CAMSEaH6+fQuDjhY-5THoYpEjjrHU4Sofnmr-nASHaTZbHvQw1w@mail.gmail.com>
2020-04-07 18:22 ` Git clone question Sankar P
2020-04-07 20:01   ` Bryan Turner [this message]
2020-04-08  2:27     ` Sankar P

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='CAGyf7-GVYMXKpptZ8w3tcZAKp41j5_EDe9kp6YcDp7=S4LuVpQ@mail.gmail.com' \
    --to=bturner@atlassian.com \
    --cc=git@vger.kernel.org \
    --cc=sankar.curiosity@gmail.com \
    /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;
as well as URLs for NNTP newsgroup(s).