Solucionado (ver solução)
Solucionado
(ver solução)
3
respostas

comando git push origin master retorna erro

Ao dar o comando $ git push origin master me retorna esse erro.

$ git push origin master
To https://github.com/MarcusVSouza/cursoGitAlura.git
 ! [rejected]        master -> master (non-fast-forward)
error: failed to push some refs to 'https://github.com/MarcusVSouza/cursoGitAlura.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.
3 respostas

Olá Marcus, tudo bem?

Esse erro está ocorrendo pois seu repositório remoto está mais atualizado que seu repositório local.

Para resolver, você precisa atualizar seu repositório local também.

Para isso basta utilizar o comando git pull

solução!

Tentei com git pull e não deu certo, fiz uma pesquisa, tentei outras soluções e forcei o git push no final das contas, obrigado pela ajuda!

Disponha :)

Vou fechar o tópico.