Estoy tratando de empujar uno de mis proyectos a github, y sigo recibiendo este error:
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
Así que lo probé y obtuve esto:
peeplesoft@jane3:~/846156 (master) $ git push --set-upstream origin master
fatal: Authentication failed
Otro hilo de stackoverflow sugirió que intente lo siguiente, con resultados decepcionantes.
peeplesoft@jane3:~/846156 (master) $ git push -u origin master
fatal: Authentication failed
Entonces probé esto:
peeplesoft@jane3:~/846156 (master) $ git config remote.origin.push HEAD
peeplesoft@jane3:~/846156 (master) $ git push
fatal: Authentication failed
¿Alguna pista?
git
comandos que el OP publicó me ayudó, incluso más que las respuestas