Reputation: 957
Quite often I fix small issues I come across in projects on Github. Whenever I do this a fork is created in my repository. Over time this summed up in more than 100 forked projects in my Github account.
Today I wanted to clean any unused forked project from my account. Now I found 12 projects left forked from my fork by others. None of them received pull-requests.
What happens to the forks of my fork if I delete my fork? Will they get "orphaned" or linked back to the original source of my fork?
Upvotes: 4
Views: 552
Reputation: 95028
What happens to forks when a repository is deleted or changes visibility?:
When you delete a private repository, all of its private forks are also deleted.
When you delete a public repository, one of the existing public forks is chosen to be the new parent repository. All other repositories are forked off of this new parent and subsequent pull requests go to this new parent.
Upvotes: 2