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

I have my git repo which, at the root, has two sub-dirs

/finisht
/static

When this was in SVN, /finisht was checked out in one place, while /static was checked out elsewhere, like so:

svn co svn+ssh://admin@domain.com/home/admin/repos/finisht/static static

Is there anyway to do this with git?

share|improve this question

5 Answers

up vote 138 down vote accepted

No, that's not possible in Git.

Implementing something like this in Git would be a substantial effort and it would mean that the integrity of the clientside repository could no longer be guaranteed. If you are interested, search for discussions on "sparse clone" and "sparse fetch" on the git mailinglist.

In general, the consensus in the Git community is that if you have several directories that are always checked out independently, then these are really two different projects and should live in two different repositories. You can glue them back together using Git Submodules.

share|improve this answer
2  
I agree. I think it really requires a different mindset when switching from SVN to Git. It's not a bad idea, and I think it'll serve me well to simply separate them into two projects. Thanks! – Nick Sergeant Mar 1 '09 at 18:21
4  
Depending on the scenario, you may want to use git subtree instead of git submodule. See alumnit.ca/~apenwarr/log/?m=200904#30 – C Pirate Aug 3 '09 at 17:12
3  
Implementing this in Git would not only be a substantial effort, it is simply not possible with the current design of Git. And I also cannot think of any obvious/straightforward way how to extend/change Git's model to make this possible. – Albert May 22 '11 at 11:30
3  
More updated answers are below. – ripper234 Jan 16 '12 at 9:09
What about a partial checkout (or clone) for the purpose of getting the code, not for further development under source control? For example, in a large repo there is a small subdirectory with a code example that I want to try. Why would I need to clone the whole repo for that small piece of code? (I realize this is an old answer, but I am trying to argue the motivation for such an operation) – ysap May 16 at 12:04

What you are trying to do is called a sparse checkout, and that feature was added in git 1.7.0 (Feb. 2012). The steps to do a sparse clone are as follows:

git init <repo>
cd <repo>
git remote add -f origin <url>

This creates an empty repository with your remote. Then do:

git config core.sparsecheckout true

Now you need to define which files/folders you want to actually check out. This is done by listing them in .git/info/sparse-checkout, eg:

echo some/dir/ >> .git/info/sparse-checkout
echo another/sub/tree >> .git/info/sparse-checkout

Last but not least, update your empty repo with the state from the remote:

git pull origin master

You might want to have a look at the extended tutorial and you should probably read the official documentation for sparse checkout.

share|improve this answer
That's absolutely perfect. I Konw I shouldn't comment this kind of "thanks" thing but I've crushing my brain with this for long. – demil133 Dec 14 '12 at 2:41
FYI: if above is not working on windows, make sure you use something like this: echo some/dir/*>> .git/info/sparse-checkout, note it seems need to use /* and there is no space after it before the >>. – wangzq Jan 8 at 0:09
This question is probably a duplicate of stackoverflow.com/questions/4114887/… . I'm commenting on this one because the last command generates the following error: "Sparse checkout leaves no entry on working directory". Instead, just checkout the desired branch (e.g, master) using: git checkout master. – metator Jan 25 at 2:13
3  
on Apple the '-f' perimeter does not work. just do git remote add origin <url> without -f – Anno2001 Feb 17 at 10:58
Be careful about copying and pasting the "-f" in the command above. On my linux system it became a long dash, and then git thought "-f" was the remote name instead of "origin". Just type it yourself. – Paul Lynch May 7 at 14:38
show 1 more comment

Git 1.7.0 has “sparse checkouts”. See “core.sparseCheckout” in the git config manpage, “Sparse checkout” in the git read-tree manpage, and “Skip-worktree bit” in the git update-index manpage.

The interface is not as convenient as SVN’s (e.g. there is no way to make a sparse checkout at the time of an initial clone), but the base functionality upon which simpler interfaces could be built is now available.

share|improve this answer

If you never plan to interact with the repository from which you cloned, you can do a full git clone and rewrite your repository using git filter-branch --subdirectory-filter. This way, at least the the history will be preserved.

share|improve this answer

Why not just clone the whole thing, then delete the checked-out copy of the part you don't want. Something like this (untested):

git clone git://url.of/remote/repo.git myProject
cd myProject
rmdir -rf static

Then it'll always show up as "missing" every time you do a git status, which is annoying, plus you could accidentally commit the deletion. So you might want to add it to .gitignore although I think you'll probably have to do a git update-index --assume-unchanged static as well.

share|improve this answer
15  
This post is rubbish. People with little experience should not post "untested" suggestions. "update-index --assume-unchanged" can not be applied to directories. .gitignore only effects untracked files (and would therefore have no effect here). Therefore the whole point of these suggestions is useless. – Blaine Oct 29 '11 at 12:48

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.