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

I want to require only a sub portion of a git repository (instead of the full thing). The reason i want to do this is because the repository is huge.

In my case the repository is: https://github.com/pubnub/pubnub-api.git and I only want the /php directory.

I have the following package defined in composer:

   {
            "type": "package",
            "package": {
                "name": "pubnub",
                "version": "dev-master",
                "source" : {
                    "url": "https://github.com/pubnub/pubnub-api.git",
                    "type": "git",
                    "reference":"master"
                }
            }
    },

Any tips?

share|improve this question
1  
Please remember that the best you can do is to retrieve a bare repository (nothing in the working directory), then checkout the files in php. You will still end up with all of the history using git clone (as I guess that Composer does behind the scenes). – Mark Leighton Fisher Jan 25 at 19:52

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.