Partial clone with Git and Mercurial

GitMercurial

Git Problem Overview


Is it possible to clone only one branch (or from a given commit) in Git and Mercurial? I mean, I want to clone a central repo but since it's huge I'd like to only get part of it and still be able to contribute back my changes. Is it possible? Like, I only want from Tag 130 onwards or something like that?

If so, how?

Git Solutions


Solution 1 - Git

In Git land you are talking about three different types of partial clones:

  • shallow clones: I want history from revision point X onward.

Use git clone --depth <n> <url> for that, but please remember that shallow clones are somewhat limited in interacting with other repositories. You would be able to generate patches and send them via email.

  • partial clone by filepath: I want all revision history history in some directory /path.

Not possible in Git. With modern Git though you can have sparse checkout, i.e. you have whole history but you check out (have in working area) only subset of all files.

  • cloning only selected branch: I want to clone only one branch (or selected subset of branches).

Possible, and

before git 1.7.10 not simple: you would need to do what clone does manually, i.e. git init [<directory>], then git remote add origin <url>, edit .git/config replacing * in remote.origin.fetch by requested branch (probably 'master'), then git fetch .

as of git 1.7.10 git clone offers the --single-branch option which seems like it was added just for this purpose, and seems pretty easy.

Note however that because branches usually share most of their history, the gain from cloning only a subset of branches might be smaller than you think.

You can also do a shallow clone of only selected subset of branches.

If you know how people will want to break things down by filepath (multiple projects in the same repository) you can use submodules (sort of like svn:externals) to pre-split the repo into separately cloneable portions.

Solution 2 - Git

In mercurial land you're talking about three different types of partial clones:

  • shallow clones: I want the history from revision point X onward use the remotefilelog extension
  • partial clones by filepath: I want all revision history in directory /path with experimental narrowhg extension or I want only files in directory /path to be in my working directory with experimental sparse extension (shipped since version 4.3, see hg help sparse).
  • partial clones by branch: I want all revision history on branch Y: use clone -r

If you know how people will want to break things down by filepath (multiple projects in the same repo (shame on you)) you can use subrepositories (sort of like svn externals) to pre-split the repo into separately cloneable portions

Also, as to the "so huge I'd like to only get a part of it": You really only have to do that one time ever. Just clone it while you have lunch, and then you have it forever more. Subsequently you can pull and get deltas efficiently going forward. And if you want another clone of it, just clone your first clone. Where you got a clone doesn't matter (and local clones take up no additional diskspace since they're hard links under the covers).

Solution 3 - Git

The selected answer provides a good overview, but lacks a complete example.

Minimize your download and checkout footprint (a), (b):

git clone --no-checkout --depth 1 --single-branch --branch (name) (repo) (folder)
cd (folder)
git config core.sparseCheckout true
echo "target/path/1" >>.git/info/sparse-checkout
echo "target/path/2" >>.git/info/sparse-checkout
git checkout

Periodically optimize your local repository footprint (c) (optional, use with care):

git clean --dry-run # consider and tweak results then switch to --force
git gc
git repack -Ad
git prune

See also: How to handle big repositories with git

Solution 4 - Git

This method creates an unversioned archive without subrepositories:

hg clone -U ssh://machine//directory/path/to/repo/project projecttemp

cd projecttemp

hg archive -r tip ../project-no-subrepos

The unversioned source code without the subrepositoies is in the project-no-subrepos directory

Solution 5 - Git

Regarding Git it might be of a historical significance that Linus Torvalds answered this question from the conceptual perspective back in 2007 in a talk that was recorded and is available online.

The question is whether it is possible to check out only some files out of a Git repository.

Tech Talk: Linus Torvalds on git t=43:10

To summarize, he said that one of the design decisions of Git that sets it apart from other source management systems (he cites BitKeeper and SVN) is that Git manages content, not files. The implications being that e.g. a diff of a subset of files in two revisions is computed by first taking the whole diff and then pruning it only to the files that were requested. Another is that you have to check out the whole history; in an all or nothing fashion. For this reason, he suggests splitting loosely related components among multiple repositories and mentions a then ongoing effort to implement an user interface for managing a repository that is structured as a super-project holding smaller repositories.

As far as I know this fundamental design decision still apples today. The super-project thing probably became what now are submodules.

Solution 6 - Git

If, as in Brent Bradburn'answer, you do a repack in a Git partial clone, make sure to:

git clone --filter=blob:none --no-checkout https://github.com/me/myRepo
cd myRepo
git sparse-checkout init
# Add the expected pattern, to include just a subfolder without top files:
git sparse-checkout set /mySubFolder/

# populate working-tree with only the right files:
git read-tree -mu HEAD

Regarding the local optimization in a partial clone, as in:

git clean --dry-run # consider and tweak results then switch to --force
git gc
git repack -Ad
git prune

use Git 2.32 (Q2 2021), where "git repack -A -d"(man) in a partial clone unnecessarily loosened objects in promisor pack before 2.32: fixed.

See commit a643157 (21 Apr 2021) by Rafael Silva (raffs).
(Merged by Junio C Hamano -- gitster -- in commit a0f521b, 10 May 2021)

> ## repack: avoid loosening promisor objects in partial clones
> Reported-by: SZEDER Gábor
> Helped-by: Jeff King
> Helped-by: Jonathan Tan
> Signed-off-by: Rafael Silva

> When git repack -A -d(man) is run in a partial clone, pack-objects is invoked twice: once to repack all promisor objects, and once to repack all non-promisor objects.
> The latter pack-objects invocation is with --exclude-promisor-objects and --unpack-unreachable, which loosens all objects unused during this invocation.
> Unfortunately, this includes promisor objects.
> > Because the -d argument to git repack(man) subsequently deletes all loose objects also in packs, these just-loosened promisor objects will be immediately deleted.
> However, this extra disk churn is unnecessary in the first place.
> For example, in a newly-cloned partial repo that filters all blob objects (e.g. --filter=blob:none), repack ends up unpacking all trees and commits into the filesystem because every object, in this particular case, is a promisor object.
> Depending on the repo size, this increases the disk usage considerably: In my copy of the linux.git, the object directory peaked 26GB of more disk usage.
> > In order to avoid this extra disk churn, pass the names of the promisor packfiles as --keep-pack arguments to the second invocation of pack-objects.
> This informs pack-objects that the promisor objects are already in a safe packfile and, therefore, do not need to be loosened.
> > For testing, we need to validate whether any object was loosened.
> However, the "evidence" (loosened objects) is deleted during the process which prevents us from inspecting the object directory.
> Instead, let's teach pack-objects to count loosened objects and emit via trace2 thus allowing inspecting the debug events after the process is finished.
> This new event is used on the added regression test.
> > Lastly, add a new perf test to evaluate the performance impact made by this changes (tested on git.git):
> > Test HEAD^ HEAD > ---------------------------------------------------------- > 5600.3: gc 134.38(41.93+90.95) 7.80(6.72+1.35) -94.2% > > For a bigger repository, such as linux.git, the improvement is even bigger:
> > Test HEAD^ HEAD > ------------------------------------------------------------------- > 5600.3: gc 6833.00(918.07+3162.74) 268.79(227.02+39.18) -96.1% > > These improvements are particular big because every object in the newly-cloned partial repository is a promisor object.


As noted with Git 2.33 (Q3 2021), the git-repack(man) doc clearly states that it does operate on promisor packfiles (in a separate partition), with "-a" specified.
> Presumably the statements here are outdated, as they feature from the first doc in 2017 (and the repack support was added in 2018)

See commit ace6d8e (02 Jun 2021) by Tao Klerks (TaoK).
(Merged by Junio C Hamano -- gitster -- in commit 4009809, 08 Jul 2021)
> Signed-off-by: Tao Klerks
> Reviewed-by: Taylor Blau
> Acked-by: Jonathan Tan

See technical/partial-clone man page.

Plus, still with Git 2.33 (Q3 2021), "git read-tree"(man) had a codepath where blobs are fetched one-by-one from the promisor remote, which has been corrected to fetch in bulk.

See commit d3da223, commit b2896d2 (23 Jul 2021) by Jonathan Tan (jhowtan).
(Merged by Junio C Hamano -- gitster -- in commit 8230107, 02 Aug 2021)

> ## cache-tree: prefetch in partial clone read-tree
> Signed-off-by: Jonathan Tan

> "git read-tree"(man) checks the existence of the blobs referenced by the given tree, but does not bulk prefetch them.
> Add a bulk prefetch.
> > The lack of prefetch here was noticed at $DAYJOB during a merge involving some specific commits, but I couldn't find a minimal merge that didn't also trigger the prefetch in check_updates() in unpack-trees.c (and in all these cases, the lack of prefetch in cache-tree.c didn't matter because all the relevant blobs would have already been prefetched by then).
> This is why I used read-tree here to exercise this code path.

Solution 7 - Git

In mercurial, you should be able to so some of this using:

hg convert --banchmap FILE SOURCEDEST REVMAP

You may also want:

--config convert.hg.startrev=REV

The source can be git, mercurial, or a variety of other systems.

I haven't tried it, but convert is quite rich.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionpabloView Question on Stackoverflow
Solution 1 - GitJakub NarębskiView Answer on Stackoverflow
Solution 2 - GitRy4an BraseView Answer on Stackoverflow
Solution 3 - GitBrent BradburnView Answer on Stackoverflow
Solution 4 - GitrossmicView Answer on Stackoverflow
Solution 5 - Gituser7610View Answer on Stackoverflow
Solution 6 - GitVonCView Answer on Stackoverflow
Solution 7 - GitDan ChristianView Answer on Stackoverflow