Viking private git repo at github.com

I wonder if this is possible.

I have a "starter project" on github (private repository). What I like to do is create a customerA repo (also private), but it should be forked from the "start-up project". My idea is that client B, Customer C, everything can have its own private repo, and if I fix the error that is common in the "start-up project", I can easily fix the error for my entire client.

I have not found a solution. I currently solved this by cloning a private sampe project .. is this a git or github.com problem?

any work around?

+5
source share
2

. , .

... , git . :

$ git clone git@github.com:client/your-project
$ cd your-project
$ git remote add original git@github.com:you/your-project
$ git fetch original
$ git cherry-pick <change from original>
$ git merge <whatever>
$ git rebase <whatever>
$ git push origin

.

- Github - . - , git. .

+7

Git - , forking, , : Git forking, github. - .

, youd , , . , ?

+3

All Articles