
wilmer stwar prieto malaver
Pregunta**Hola soy muy nuevo en esto me gustaría que me ayuden por favor tengo este error al guardar el commit con el mensaje y no he podido avanzar en el modulo estaria muy agradecido por su ayuda bendiciones **
git commit -m "se actualiza con nuevos comandos" Author identity unknown
*** Please tell me who you are.
Run
git config --global user.email "you@example.com" git config --global user.name "Your Name"
to set your account's default identity. Omit --global to set the identity only in this repository.
fatal: unable to auto-detect email address (got 'sistemas@sistemasp-195.(none)')

Axel Yaguana
¡Hola, Wilmer! 🚀
Git se está preguntando quién eres y por eso no te permite hacer commits. Si te das cuenta la terminal te arroja:
Author identity unknown *** Please tell me who you are. Run git config --global user.email "you@example.com" git config --global user.name "Your Name" to set your account's default identity. Omit --global to set the identity only in this repository. fatal: unable to auto-detect email address (got 'sistemas@sistemasp-195.(none)')
Para solucionarlo debes correr los comandos que te indica Git y configurarlo con tus datos.
git config --global user.name "FIRST_NAME LAST_NAME"
En lugar de
FIRST_NAME
LAST_NAME
Ahora haces lo mismo pero para tu correo:
git config --global user.email "MY_NAME@example.com"
En este caso sustituyes
MY_NAME@example.com
Puedes leer más en este tutorial: https://support.atlassian.com/bitbucket-cloud/docs/configure-your-dvcs-username-for-commits/