Solucionado (ver solución)
Solucionado
(ver solución)
2
respuestas

error git push

Al realizar el git push me aparecio una pantalla externa pidiendo credenciales pero fue bloqueada, y me arroja este error en la consola: $ git push To https://github.com/romunozf/sistema-de-registro.git ! [rejected] main -> main (fetch first) error: failed to push some refs to 'https://github.com/romunozf/sistema-de-registro.git' hint: Updates were rejected because the remote contains work that you do not hint: have locally. This is usually caused by another repository pushing to hint: the same ref. If you want to integrate the remote changes, use hint: 'git pull' before pushing again. hint: See the 'Note about fast-forwards' in 'git push --help' for details.

por favor su ayuda!!!

2 respuestas
solución!

Buenas noches , por lo que veo , te está pidiendo que antes de cargar los cambios que hiciste en el repositorio remoto , debes traer otros cambios que alguien hizo y no están guardados en tu repositorio local , por eso te solicita primero hacer un git pull para traer dichos cambios y fusionarlos en tu repositorio local para que posterior puedas enviar tus cambios con el git push.

Muchas gracias!