Oi pessoal,
fiz o commit no meu repositório local, depois criei um repositório no GitHub e tentei fazer o push
usando o comando: git push -u origin main
, mas recebi o seguinte erro: error: src refspec main does not match any error: failed to push some refs to 'https://github.com/thalialima/mudi.git'
.
Então fui pesquisar, e li no Stack Over Flow algo sobre trocar o nome main
para master
ou master
para main
, enfim, tinha um passo a passo enorme, e eu simplesmente decidi trocar git push -u origin main
por git push -u origin master
e o push
finalmente funcionou...
Porém eu não entendi o porquê disso, se eu já tinha usado o git push -u origin main
anteriormente em outros repositórios e já havia funcionado...