Ho avuto lo stesso problema. Il problema è che qualcosa aveva impedito a distanza.
Per prima cosa ho creato un repository locale. Ho aggiunto un file LICENSE
e README.md
al mio locale e impegnato.
Quindi volevo un repository remoto, quindi ne ho creato uno su GitHub. Qui ho fatto un errore nel controllare "Inizializza questo repository con un README" , che ha creato anche un README.md in remoto.
Quindi ora quando ho corso
git push --set-upstream origin master
Ho ottenuto:
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.
Ora per superare questo ho fatto
git pull origin master
Che ha comportato l'errore seguente:
From https://github.com/lokeshub/myTODs
branch master -> FETCH_HEAD
fatal: refusing to merge unrelated histories**
Provai:
git pull origin master --allow-unrelated-histories
Risultato:
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.
Soluzione:
Ho rimosso il repository remoto e creato un nuovo (penso che solo la rimozione del file README
avrebbe potuto funzionare) e dopo che il seguito ha funzionato:
git remote rm origin
git remote add origin https://github.com/lokeshub/myTODOs.git
git push --set-upstream origin master
git-rebase
situazione mentre la risposta dà una bandiera pergit-merge