Reputation: 3108
I have recently forked one of my Bitbucket projects to create a different edition of the service contained. The project the fork originated from lives on and the fork will never be merged back to the original project.
How can I remove the reference to the originating project so that I don't get offered to merge code back to this project in the Bitbucket UI.
Upvotes: 4
Views: 2446
Reputation: 311721
There is probably a simpler answer, but you could:
git push
your local repository to the new project.Now you have a project with the same repository history that has no link to the "parent" repository.
Upvotes: 3