Eu tive o mesmo problema. O problema é remoto tinha algo impedindo isso.
Eu criei um repositório local pela primeira vez. Eu adicionei um arquivo LICENSE
e README.md
ao meu local e cometi.
Como eu queria um repositório remoto, criei um no GitHub. Aqui cometi um erro ao verificar "Inicializar este repositório com um README" , que também criou um README.md no controle remoto.
Então agora quando eu corri
git push --set-upstream origin master
Eu tenho:
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.
Agora, para superar isso, eu fiz
git pull origin master
O que resultou no erro abaixo:
From https://github.com/lokeshub/myTODs
branch master -> FETCH_HEAD
fatal: refusing to merge unrelated histories**
Eu tentei:
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.
Solução:
Eu removi o repositório remoto e criei um novo (acho que apenas a remoção do arquivo README
poderia ter funcionado) e depois disso o seguinte funcionou:
git remote rm origin
git remote add origin https://github.com/lokeshub/myTODOs.git
git push --set-upstream origin master
git-rebase
situação enquanto a resposta dá uma bandeira paragit-merge