Github Affiliates

I have a project that I am working on and hire contractors to help me in certain parts of the code. The trick is that I do not want any of the contractors to see all this.

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

+4
source share
2 answers

Have you considered using submodules?

Git submodule support allows the repository to contain an external project check as a subdirectory.

More details:

+3
source

You can do this with submodules .

+1
source

All Articles