Reputation: 4066
I am working in a project hosted in GitHub which was private. I forked it and contributed in it by raising pull request.
Now that private project is public. My forked repository was locked up for a while which I fixed by making it public(more info here).
The problem is: Now I don't see the message forked from some_repository
.
Because of this, I can not give pull request to that parent repository.
How to solve this?
Upvotes: 1
Views: 86
Reputation: 52746
If a private repository is made public, each of its private forks is turned into a standalone private repository and becomes the parent of its own new repository network.
My solution:
(1) Fork from original repository
(2) Use compare and merge software (for example WinMerge or Beyond Compare 4) then merge to your folk.
(3) Send pull request from your fork to parent repository, then merge code.
(4) Delete your own (parent) repository
Upvotes: 1