Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

Thanks!

share|improve this question

4 Answers

up vote 38 down vote accepted

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, though 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.

    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.

share|improve this answer
So, if I clone branch "XX" it will get all the parent commits from "master", right? Or only the single commit I've done on that branch? – pablo Apr 6 '10 at 18:31
1  
If you clone (fetch) only branch "XX", you would get all its commits, including those commits that branch "XX" has in common with "master" branch. In Git commits do not 'belong' to a branch. – Jakub Narębski Apr 6 '10 at 23:11
Ok, then it's not a partial clone anyway since you get all the parents and hence the entire repos (ok, the biggest part which is on master) – pablo Apr 7 '10 at 8:23
What do you mean by Git vs modern Git? A partial clone is possible in the second but not the first? – Chris Jun 20 '12 at 13:39
@Chris: by saying that "sparse checkou" requires modern Git I meant here that this feature was only recently added (at the time of posting), so it was available only in newest version. – Jakub Narębski Jun 20 '12 at 14:15
show 2 more comments

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

  • shallow clones: I want from revision point X onward not possible
  • partial clones by filepath: I want all revision history in directory /path not possible
  • partial clones by branch: I want all revision history on brancch 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) tto 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).

share|improve this answer
1  
also tags aren't the same as branches unlike in some VCS so this comes under the first point – jk. Apr 6 '10 at 17:58
There are the trimming history (mercurial.selenic.com/wiki/TrimmingHistory) and shallow clone (mercurial.selenic.com/wiki/ShallowClone) plugins for mercurial. I don't know how good they are, though. – panzi Apr 2 '11 at 15:08
5  
Both of those are rejected proposals without implementations. – Ry4an Apr 2 '11 at 19:35

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

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.