Estou tentando enviar um dos meus projetos para o github e continuo recebendo este erro:
peeplesoft@jane3:~/846156 (master) $ git push
fatal: The current branch master has no upstream branch.
To push the current branch and set the remote as upstream, use
git push --set-upstream origin master
Então eu tentei e consegui o seguinte:
peeplesoft@jane3:~/846156 (master) $ git push --set-upstream origin master
fatal: Authentication failed
Outro encadeamento de stackoverflow sugeriu que eu tente o seguinte, com resultados decepcionantes.
peeplesoft@jane3:~/846156 (master) $ git push -u origin master
fatal: Authentication failed
Então eu tentei isso:
peeplesoft@jane3:~/846156 (master) $ git config remote.origin.push HEAD
peeplesoft@jane3:~/846156 (master) $ git push
fatal: Authentication failed
Alguma dica?
git
comandos que o OP postou me ajudaram, ainda mais do que as respostas