Miałem ten sam problem. Problem jest zdalny miał coś, co temu zapobiega.
Najpierw utworzyłem lokalne repozytorium. Dodałem plik LICENSE
i README.md
do mojego pliku lokalnego i zatwierdziłem.
Potem chciałem zdalnego repozytorium, więc utworzyłem je na GitHub. Tutaj popełniłem błąd, sprawdzając „Zainicjuj to repozytorium za pomocą README” , co również zdalnie utworzyło README.md.
Więc teraz, kiedy uciekłem
git push --set-upstream origin master
Mam:
error: failed to push some refs to 'https://github.com/lokeshub/myTODs.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes
(e.g. hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
Teraz to zrobiłem
git pull origin master
Co spowodowało następujący błąd:
From https://github.com/lokeshub/myTODs
branch master -> FETCH_HEAD
fatal: refusing to merge unrelated histories**
Próbowałem:
git pull origin master --allow-unrelated-histories
Wynik:
From https://github.com/lokeshub/myTODs
* branch master -> FETCH_HEAD
Auto-merging README.md
CONFLICT (add/add): Merge conflict in README.md
Automatic merge failed;
fix conflicts and then commit the result.
Rozwiązanie:
Usunąłem zdalne repozytorium i utworzyłem nowy (myślę, że tylko usunięcie pliku README
mogło zadziałać), a potem działały następujące czynności:
git remote rm origin
git remote add origin https://github.com/lokeshub/myTODOs.git
git push --set-upstream origin master
git-rebase
sytuacji, a odpowiedź daje flagęgit-merge