Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I intend to share my source code on an invite-only basis to a few dozen users maybe. The source code itself should not be public. Participants are allowed and encouraged to submit their changes. So i need source control, preferably Git, hosted on a public server with private access level for multiple users.

I learned that it is possible to set up private git repositories on GitHub which use https:// links. On GitHub itself such a project does not show up in searches. For participating users the project shows a "lock" icon. So there are obviously private repositories, i just don't know how set one up. A lot of tutorials use SSH to set up private repositories but they all require you to have "your own server".

I don't care about secure connections when pushing/pulling source code nor do i have trust issues with GitHub. All i care about is private repository with access only to users i invite. Maybe i'm naive and such a solution is only available via commercial hosting (eg Unfuddle, Assembla) but if not, i'd really like to know how it's done!

share|improve this question

5 Answers

up vote 33 down vote accepted

Private repositories on GitHub are possible, but only with a paid account.

Starting at $7 per month for the Micro account, you can set up 5 private repositories. See the Plans page for more information.

share|improve this answer
1  
what, you can pay GitHub too? They sure hide that well ... – LearnCocos2D Apr 8 '10 at 13:37
ok, Account Settings, Plans & Billing ... got it. Thanks. – LearnCocos2D Apr 8 '10 at 13:39
They do indeed. It took me three minutes to find the link I now edited into my answer, and I needed Google for that... – Thomas Apr 8 '10 at 13:39
Darn, i'd be ok with 5 private collaborators if i had a larger number of users having private read-only access as well. – LearnCocos2D Apr 8 '10 at 13:41

bitbucket - Their plans seem to be the best - they give you way more than github do for free accounts - infact, im still only using the free plan - no need to sign up to the paid ones, plus the interface is almost identical to Github ...

Anyhoo - A repo on bitbucket can have up to FIVE private users with unlimited public or private repos - the only thing you seem to be paying for with the paid accounts are more Users to access your private repos.

share|improve this answer

If you are a student you can get a free private repository at https://github.com/edu

share|improve this answer

Once you have a paid account on github, it is not obvious how to create a private repository. To create a private repo for an organization with paid account go to https://github.com/organizations/MYORGANIZATIONNAME.

The only way I've figured how to navigate there is:

  • Goto to your organization's home page: https://github.com/MYORGANIZATIONNAME
  • Click on the "Edit MYORGANIZATION's Profile" button at top right
  • Click on the "Github" icon at top left (non-obvious)
  • Click on the "News Feed" tab (non-obvious)
  • Click on the "New Repository" button at right ...
share|improve this answer

Github is a great tool in-all for making repos, however it does not do good with private repos. You're forced to pay for private repos unless you get some sort of plan. I have a couple projects so far, and if Github doesn't do what I want I just go to Bitbucket. It's a bit harder to work than GitHub, however it's unlimited free repos. Hope this helped.

share|improve this answer

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.