Creé un directorio, hello_git
. En este directorio creé un archivo, hello_git.py
, que imprime un "Hola, git!" mensaje.GitHub: ERROR: Repositorio no encontrado. fatal: el extremo remoto colgó de forma inesperada (aparentemente diferente de las publicaciones similares)
Entonces hice hello_git
mi directorio actual en el terminal y entraron en los siguientes comandos uno tras otro en ese directorio:
git init
git add hello_git.py
git commit -m 'first commit'
git remote add origin [email protected]:githubaccountname/hello_git.git
Cuando entro en el comando git push origin master
Me preguntan:
Enter passphrase for key '/home/myusername/.ssh/id_rsa':
Cuando ingreso mi frase de contraseña (que se autentica exitosamente usando ssh -T [email protected]
) obtengo esto:
ERROR: Repository not found.
fatal: The remote end hung up unexpectedly
No sé si esto ayuda, pero:
git remote -v
rendimientos:
origin [email protected]:githubaccountname/hello_git.git (fetch)
origin [email protected]:githubaccountname/hello_git.git (push)
He mirado en las respuestas de mensajes similares, pero nada parece funcionar:
Fatal: The remote end hung up unexpectedly while pushing to Git repository
GitHub ERROR: Repository not found. fatal: The remote end hung up unexpectedly
How do I resolve this issue of preventing push to origin wrt. GitHub?
Creo que 'hello_gitty' sería un nombre mucho mejor para un repositorio de prueba/zona de pruebas. : p – ThiefMaster
¿El repositorio realmente existe en github? – Eric
No hay ningún repositorio en github, pensé que eso se creaba automáticamente para mí. Resuelto ¿Podría publicar una publicación separada para que yo pueda votarla como la respuesta correcta? – Bentley4