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

How can I fork a public repository, but make my fork private? I do have the subscription to support private repositories.

share|improve this question

3 Answers

up vote 5 down vote accepted

Go to your forked project page, then 'admin'. In settings change visibility from 'Public' to 'Private'

share|improve this answer
2  
Is this still possible? I can't seem to find the option any more under Admin (and I too have the subscription). Here's what I see: Make this repository private Make private Public forks can't be made private. Duplicate the repository or contact support. – Waynn Lue Jul 23 '12 at 8:18
You do indeed need to duplicate the repository these days, as per the instructions at help.github.com/articles/duplicating-a-repo. – MattK Aug 5 '12 at 14:39
3  
I know for sure that earlier this year you could change a repo from Public to Private but now you can't. Now the admin page just says: "Public forks can't be made private. Duplicate the repository or contact support". I contacted support. They were unwilling to help. Duplication is the only way forward. – Tom Sep 21 '12 at 12:47
3  
Update: the above link has changed to: help.github.com/articles/duplicating-a-repository – Heather Miller Feb 5 at 13:49

The current answers are a bit out of date so, for clarity:

The short answer is:

  • Do a bare clone of the public repo.
  • Create a new private one.
  • Do a mirror push to the new private one.

This is documented on GitHub: duplicating-a-repository

share|improve this answer

You have to duplicate the repo

You can see this doc (from github)

https://help.github.com/articles/duplicating-a-repository

share|improve this answer
1  
Update: the above link has changed to: help.github.com/articles/duplicating-a-repository – Heather Miller Feb 5 at 13:49

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.