Yo tuve el mismo problema. El problema es que remoto tenía algo que lo impedía.
Primero creé un repositorio local. He añadido una LICENSE
y README.md
archivo a mi local y comprometida.
Entonces quería un repositorio remoto, así que creé uno en GitHub. Aquí cometí un error al marcar "Inicializar este repositorio con un archivo README" , que también creó un archivo README.md en remoto.
Entonces ahora cuando corrí
git push --set-upstream origin master
Tengo:
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.
Ahora para superar esto hice
git pull origin master
Lo que resultó en el siguiente error:
From https://github.com/lokeshub/myTODs
branch master -> FETCH_HEAD
fatal: refusing to merge unrelated histories**
Lo intenté:
git pull origin master --allow-unrelated-histories
Resultado:
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.
Solución:
Eliminé el repositorio remoto y creé uno nuevo (creo que solo eliminar el archivo README
podría haber funcionado) y luego funcionó lo siguiente:
git remote rm origin
git remote add origin https://github.com/lokeshub/myTODOs.git
git push --set-upstream origin master
git-rebase
situación, mientras que la respuesta da una bandera paragit-merge