tags:

views:

71

answers:

2
+2  Q: 

Github Branches

I have a project I'm working on and am hiring contractors to help me on certain parts of the code. The catch is that I don't want any one of the contractors to see all of it.

Is there a way on GitHub that I can assign them a branch under a private repository? Will this require the command line or can I do it on the website?

+1  A: 

You should be able to do this with submodules.

mikerobi
+2  A: 

Have you considered using submodules?

Git's submodule support allows a repository to contain, as a subdirectory, a checkout of an external project.

More:

The MYYN