I am new to Git. I want to clone a large remote repository lets say xyzcodebase. The structure of repo is like I have src folders for different functional areas as shown below.

xyzcodebase
|
|__ Func area 1
|
|__ Func area 2

I work on Functional area 2 hence while cloning I don't want code from Functional area 1 (large size) which will save lots of my time. So that after cloning I will have only Functional area 2 source code on my local repository.

Is there a way to accomplish such selective cloning of git repository?

Thanks in advance for your help

link|improve this question

78% accept rate
feedback

1 Answer

up vote 5 down vote accepted

No, there is no way to only clone one directory. Git stores history as changes to whole repository instead of storing only subtrees as SVN.

If your project contains multiple functionalities, then maybe it would be better to split it into some sub-projects, with different repositories, and then include other repositories as submodules in master project. But it depends how your project is organized.

link|improve this answer
Thanks for your reply. If not clone, is it possible to fetch only one directory in an empty git repository? – Vaman Kulkarni Aug 18 '11 at 12:40
@Venam Still no, but you wouldn't need to. Once you have the whole repository, fetching one area or the other will be a relatively tiny operation. – meagar Aug 18 '11 at 12:42
@Vaman Not really, unfortunatelly. clone is just fancy way to say git init, git remote add, git fetch, so you still have to wait for whole repository to transfer. You can fetch shallow copy (--depth param) of repository, but then without full history you can't commit and push to remote, so it's good only for deploy or code review, not for development (unless you'll send your changes as patches to someone who has full repository) – MBO Aug 18 '11 at 12:44
@meagar You're right, I forgot to mention that in Git one only has to fetch whole repository once, and then only fetch changes in compressed format – MBO Aug 18 '11 at 12:46
feedback

Your Answer

 
or
required, but never shown

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