From 74820411736947874392e6c702083267e5e30b13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franklin=20G=C3=B3mez?= Date: Fri, 4 Apr 2025 13:07:55 -0500 Subject: [PATCH] =?UTF-8?q?Agregar=20secci=C3=B3n=20de=20errores=20comunes?= =?UTF-8?q?=20en=20el=20README.ec.md=20para=20mejorar=20la=20gu=C3=ADa=20d?= =?UTF-8?q?e=20autenticaci=C3=B3n=20y=20configuraci=C3=B3n=20de=20Git?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/translations/README.ec.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/docs/translations/README.ec.md b/docs/translations/README.ec.md index e7104e23..7c949cb7 100644 --- a/docs/translations/README.ec.md +++ b/docs/translations/README.ec.md @@ -97,6 +97,29 @@ git push -u origin ``` Reemplaza `` con el nombre de la rama que creaste anteriormente. +
+ Si obtienes algún error al enviar (Push), haz clic aquí: + +- ### Error de Autenticación +
remote: El soporte para la autenticación de contraseña se eliminó el 13 de agosto de 2021. Utiliza un token de acceso personal en su lugar.
+  remote: Consulta [https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/](https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/) para obtener más información.
+  fatal: Fallo en la autenticación para '[https://github.com/](https://github.com/)/first-contributions.git/'
+ Ve al [tutorial de GitHub](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account) sobre cómo generar y configurar una clave SSH en tu cuenta. + + Además, es posible que desees ejecutar `git remote -v` para verificar tu dirección remota. + + Si se ve algo como esto: +
origin [https://github.com/tu-usuario/tu_repo.git] (fetch)  
+  origin  [https://github.com/tu-usuario/tu_repo.git] (push)
+ + + cámbialo usando este comando: + ```bash + git remote set-url origin git@github.com:tu-usuario/tu_repo.git + ``` + De lo contrario, aún se te pedirá un nombre de usuario y contraseña y obtendrás un error de autenticación. +
+ ## Envía (*Submit*) tus cambios para ser revisados Si vas a tu repositorio en GitHub, verás un botón `Compare & pull request`. Haz clic sobre este botón.