From: Jeff Hostetler <git@jeffhostetler.com>
To: git@vger.kernel.org
Cc: gitster@pobox.com, peff@peff.net, jonathantanmy@google.com,
Jeff Hostetler <jeffhost@microsoft.com>
Subject: [PATCH 0/9] WIP Partial clone part 2: fsck and promisors
Date: Thu, 2 Nov 2017 20:20:43 +0000 [thread overview]
Message-ID: <20171102202052.58762-1-git@jeffhostetler.com> (raw)
From: Jeff Hostetler <jeffhost@microsoft.com>
This is part 2 of a proposed 3 part sequence for partial clone.
Part 2 assumes part 1 [1] is in place.
Part 2 is concerned with fsck, gc, initial support for dynamic
object fetching, and tracking promisor objects. Jonathan Tan
originally developed this code. I have moved it on top of [1].
[1] https://public-inbox.org/git/20171102124445.fbffd43521cd35f6a71e1851@google.com/T/
[2] https://public-inbox.org/git/cover.1506714999.git.jonathantanmy@google.com/
Jeff Hostetler (1):
extension.partialclone: introduce partial clone extension
Jonathan Tan (8):
fsck: introduce partialclone extension
fsck: support refs pointing to promisor objects
fsck: support referenced promisor objects
fsck: support promisor objects as CLI argument
index-pack: refactor writing of .keep files
introduce fetch-object: fetch one promisor object
sha1_file: support lazily fetching missing objects
gc: do not repack promisor packfiles
Documentation/git-pack-objects.txt | 4 +
Documentation/gitremote-helpers.txt | 2 +
Documentation/technical/repository-version.txt | 22 ++
Makefile | 2 +
builtin/cat-file.c | 3 +
builtin/fetch-pack.c | 10 +
builtin/fsck.c | 26 +-
builtin/gc.c | 4 +
builtin/index-pack.c | 113 ++++----
builtin/pack-objects.c | 14 +
builtin/prune.c | 7 +
builtin/repack.c | 12 +-
builtin/rev-list.c | 35 ++-
cache.h | 15 +-
config.h | 3 +
environment.c | 2 +
fetch-object.c | 26 ++
fetch-object.h | 6 +
fetch-pack.c | 8 +-
fetch-pack.h | 2 +
list-objects.c | 8 +-
object.c | 2 +-
packfile.c | 78 +++++-
packfile.h | 13 +
partial-clone-utils.c | 78 ++++++
partial-clone-utils.h | 34 +++
remote-curl.c | 17 +-
revision.c | 32 ++-
revision.h | 5 +-
setup.c | 12 +
sha1_file.c | 39 ++-
t/t0410-partial-clone.sh | 343 +++++++++++++++++++++++++
transport.c | 8 +
transport.h | 8 +
34 files changed, 917 insertions(+), 76 deletions(-)
create mode 100644 fetch-object.c
create mode 100644 fetch-object.h
create mode 100644 partial-clone-utils.c
create mode 100644 partial-clone-utils.h
create mode 100755 t/t0410-partial-clone.sh
--
2.9.3
next reply other threads:[~2017-11-02 20:21 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-11-02 20:20 Jeff Hostetler [this message]
2017-11-02 20:20 ` [PATCH 1/9] extension.partialclone: introduce partial clone extension Jeff Hostetler
2017-11-02 22:24 ` Jonathan Tan
2017-11-03 13:57 ` Jeff Hostetler
2017-11-03 18:39 ` Jonathan Tan
2017-11-06 17:32 ` Jeff Hostetler
2017-11-06 19:16 ` Jonathan Tan
2017-11-08 20:32 ` Jeff Hostetler
2017-11-08 21:51 ` Jonathan Tan
2017-11-08 22:11 ` Jeff Hostetler
2017-11-16 17:33 ` Jeff Hostetler
2017-11-02 20:20 ` [PATCH 2/9] fsck: introduce partialclone extension Jeff Hostetler
2017-11-02 20:20 ` [PATCH 3/9] fsck: support refs pointing to promisor objects Jeff Hostetler
2017-11-02 20:20 ` [PATCH 4/9] fsck: support referenced " Jeff Hostetler
2017-11-02 20:20 ` [PATCH 5/9] fsck: support promisor objects as CLI argument Jeff Hostetler
2017-11-02 20:20 ` [PATCH 6/9] index-pack: refactor writing of .keep files Jeff Hostetler
2017-11-02 20:20 ` [PATCH 7/9] introduce fetch-object: fetch one promisor object Jeff Hostetler
2017-11-02 20:20 ` [PATCH 8/9] sha1_file: support lazily fetching missing objects Jeff Hostetler
2017-11-02 20:20 ` [PATCH 9/9] gc: do not repack promisor packfiles Jeff Hostetler
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=20171102202052.58762-1-git@jeffhostetler.com \
--to=git@jeffhostetler.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=jeffhost@microsoft.com \
--cc=jonathantanmy@google.com \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.