I had the same problem while using GitHub desktop. The way to solve is:
- Open repository folder in explorer
- Delete or rename the repository folder
- File -> clone repository and choose the right one
- Repeat step 1
- Copy your project to the folder
- Click "fetch origin"
I had the same problem while using GitHub desktop. The way to solve is:
- Open repository folder in explorer
- Delete or rename the repository folder
- File -> clone repository and choose the right one
- Repeat step 1
- Copy your project to the folder
- Click "fetch origin"
go to root of your working code and locate and delete .git folder it will disconnect your code from exiting git repository
login to github and delete your existing repository / rename repository to new name
create a new repository with existing repository name and push your code to this repository.
"refusing to merge unrelated histories" with initial repository
unable to merge unrelated histories
'Unable to merge unrelated histories in this repository'
github - How to correct «unable to merge unrelated histories»? - Stack Overflow
I created the following repository on GitHub: https://github.com/james/test.git.
Then I proceeded with:
user@guest:~/.../gits$ git config --global init.defaultBranch main user@guest:~/.../gits$ mkdir test && cd test user@guest:~/.../test$ echo "# test" >> README.md user@guest:~/.../test$ git init user@guest:~/.../test$ git add README.md user@guest:~/.../test$ git commit -m "First commit" user@guest:~/.../test$ git remote add origin https://github.com/james/test.git user@guest:~/.../test$ git push -u origin main
And then:
user@guest:~/.../test$ git commit --amend user@guest:~/.../test$ git log --oneline --graph --all * ca82a6d (HEAD -> main) First commit * 085bb3b (origin/main) First commit user@guest:~/.../test$ git merge origin/main fatal: refusing to merge unrelated histories
What did I do wrong and what is the best solution in this case?
You can use --allow-unrelated-histories to force the merge to happen.
The reason behind this is that default behavior has changed since Git 2.9:
"git merge" used to allow merging two branches that have no common base by default, which led to a brand new history of an existing project created and then get pulled by an unsuspecting maintainer, which allowed an unnecessary parallel history merged into the existing project. The command has been taught not to allow this by default, with an escape hatch
--allow-unrelated-historiesoption to be used in a rare event that merges histories of two projects that started their lives independently.
See the Git release changelog for more information.
More information can be found in this answer.
In my case, the error was just fatal: refusing to merge unrelated histories on every try, especially the first pull request after remotely adding a Git repository.
Using the --allow-unrelated-histories flag worked with a pull request in this way:
git pull origin branchname --allow-unrelated-histories
As per 2.9.0 release notes - git pull has been taught to pass the --allow-unrelated-histories option to underlying git merge