Delete fork dependency of a GitHub repository

Github

Github Problem Overview


How can I make GitHub forget or disassociate that my repo was originally a fork of another project?

I forked a project in GitHub. I can now see "forked from whatever/whatever". The parent repository "whatever/whatever" is no longer maintained. I have been allowed to continue use of the code base of the original repository to create an independent repository.

Is there a way to detach my project from the original repository?

Github Solutions


Solution 1 - Github

You can contact github support and ask them to switch your repository to "normal mode".

On this page, "Commit was made in a fork" paragraph, it is explained that one has to go through support to switch. Therefore, it is likely that there is no way to do that by yourself (unless you destroy and recreate your repo which is explained before... if you do so be careful if you have tickets or a wiki attached to your project as they will be deleted!).

Update Jan 2022:

Use the GitHub chatbot-virtual-assistant at https://support.github.com/request/fork .

Solution 2 - Github

You could duplicate the forked repository to a new repository (without the fork dependency) from the GitHub UI, then remove the original forked one:

  • Sign in to GitHub
  • Select the + sign in the top right corner and select Import repository.
  • Import your forked repository. The new repository won't have the fork dependency.
  • Delete the original, forked repository in the repository settings.

NOTE: This approach will not preserve issues and pull requests.

Solution 3 - Github

Make sure you have all the important branches and tags on your local repo, delete the github repo, recreate the repository through usual means (no forking) and push the local repository back with git push --all. Note that if you have local branches that you don't want to publish, might be worth to create a temporary clean local clone for the operation.

However, this will also get rid of wiki and issues. As the wiki is in fact it's own repository, it can be handled similarly by cloning it and then recreating and pushing. The repo address is on wiki's Git Access page ([email protected]:user/repo.wiki.git).

This leaves issues. They can be exported through the API, but as far as I know, you can only create issues and comments with your person, so importing them perfectly is impossible.

So, if you need issues to be preserved, you should go through github support as Thomas Moulard suggests.

Solution 4 - Github

I got the similar problem, and ended up using this [github help page][1] to solve it. I didn't mind about the wiki and issues tracker as it was for my blog using a theme kindly developed by another user.

To detach a forked repo and use it as your own after several commits without losing the whole history:

git clone --bare [email protected]:user/forked_repo.git

Create a new empty reposity new-repository on the github website. And push a mirrored version:

cd user.github.com.git/

git push --mirror [email protected]:user/new-repository.git

One can rename on github, the forked_repository with another name to keep it as backup and check updates if needed. Or simply delete it.

Renaming the new-repository to the original name does the job. As a side effect, your commits now appear in your history.

[1]: https://help.github.com/articles/duplicating-a-repository/ "github help"

Solution 5 - Github

This only applies to GitHub Enterprise, not on github.com

Logged in to an account that has admin privileges:

  1. Go to the repository that you need to detach: https://<ghe url>/<org>/<repo>
  2. Click on the “Site Admin” rocket on the top right corner
  3. Click "Collaboration" on the top menu bar
  4. Click on “Network” on the left pane
  5. Click on “Make Root” in the Network Structure pane
  6. Accept

This was tested on GitHub Enterprise 2.9

Solution 6 - Github

Using the info from aurelien and Clayton, I was able to do this with the following:

$ git clone --bare https://github.com/my/forked_repo.git
<delete forked_repo on GitHub>
<recreate repo on GitHub using same name>
$ cd forked_repo.git
$ git push --mirror

Here's the documentation for git clone --bare:

> Make a bare Git repository. That is, instead of creating <directory> and placing the administrative files in <directory>/.git, make the <directory> itself the $GIT_DIR. This obviously implies the -n because there is nowhere to check out the working tree. Also the branch heads at the remote are copied directly to corresponding local branch heads, without mapping them to refs/remotes/origin/. When this option is used, neither remote-tracking branches nor the related configuration variables are created.

Here's the documentation for git push --mirror:

> Instead of naming each ref to push, specifies that all refs under refs/ (which includes but is not limited to refs/heads/, refs/remotes/, and refs/tags/) be mirrored to the remote repository. Newly created local refs will be pushed to the remote end, locally updated refs will be force updated on the remote end, and deleted refs will be removed from the remote end. This is the default if the configuration option remote.<remote>.mirror is set.

Note: like the other git based answers, this will not copy over issues that are not part of the git repo such as the wiki and issues. Per Tapio:

  • The wiki is a separate git repo and can be handled in a similar fashion per Tapio. The address is: [email protected]:user/repo.wiki.git.
  • Issues can be exported via the GitHub API but there are issues recreating them since they can only be created by your user, so imports will lose information.

Solution 7 - Github

Log in to GitHub with your credentials.

Go to https://support.github.com/contact?tags=rr-forks&subject=Detach%20Fork&flow=detach_fork.

Enter the URL or repo name of the fork as your-user-name/repository-name, and answer the other questions of the virtual assistant.

You will get an email with a ticket number where you can check the status of your request. You will also be notified per email once your repo has been deforked.


Notes: I was able to use the virtual assistant in Chrome and Edge, but not in Firefox. Also, the status of my ticket was still pending after the repo had been detached. I guess GitHub will eventually fix those glitches in their process.

Solution 8 - Github

If you do not need any past commits (I didn't in my case), you can just:

  • fork the project
  • make a local copy of the fork (I used my IDE to do that)
  • delete the git folder from your local copy
  • commit the project as you normally would a new project.

You can just delete the fork from your github account after. Took me all of one minute and worked like a charm.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionMickView Question on Stackoverflow
Solution 1 - GithubThomas MoulardView Answer on Stackoverflow
Solution 2 - GithubJuuso OhtonenView Answer on Stackoverflow
Solution 3 - GithubTapioView Answer on Stackoverflow
Solution 4 - GithubaurelienView Answer on Stackoverflow
Solution 5 - GithubAntonio O.View Answer on Stackoverflow
Solution 6 - GithubGrokifyView Answer on Stackoverflow
Solution 7 - GithubGOTO 0View Answer on Stackoverflow
Solution 8 - GithubNarcisView Answer on Stackoverflow