Setting your commit email address on GitHub
- 
En la esquina superior derecha de cualquier página en GitHub, haz clic en la fotografía de perfil y luego en Settings. 
- 
En la sección "Access" de la barra lateral, haz clic en Emails. 
- 
En "Agregar dirección de correo electrónico", escribe tu dirección de correo electrónico y haz clic en Agregar. 
- 
En el menú desplegable "Dirección de correo electrónico principal", selecciona la dirección que quieres asociar con tus operaciones de Git basadas en web.  
Setting your commit email address in Git
You can use the git config command to change the email address you associate with your Git commits. The new email address you set will be visible in any future commits you push to GitHub from the command line. Any commits you made prior to changing your commit email address are still associated with your previous email address.
Setting your email address for every repository on your computer
- 
Abra TerminalTerminalGit Bash. 
- 
Configurar una dirección de correo electrónico en Git. Puedes usar cualquier dirección de correo electrónico. git config --global user.email "YOUR_EMAIL"
- 
Confirma que has establecido correctamente la dirección de correo electrónico en Git: $ git config --global user.email email@example.com
- 
Agrega la dirección de correo electrónico a tu cuenta en GitHub, de modo que las confirmaciones se te atribuyan y aparezcan en el gráfico de contribuciones. Para más información, consulta Adding an email address to your GitHub account. 
Setting your email address for a single repository
GitHub uses the email address set in your local Git configuration to associate commits pushed from the command line with your account on GitHub.
You can change the email address associated with commits you make in a single repository. This will override your global Git configuration settings in this one repository, but will not affect any other repositories.
- 
Abra TerminalTerminalGit Bash. 
- 
Change the current working directory to the local repository where you want to configure the email address that you associate with your Git commits. 
- 
Configurar una dirección de correo electrónico en Git. Puedes usar cualquier dirección de correo electrónico. git config user.email "YOUR_EMAIL"
- 
Confirma que has establecido correctamente la dirección de correo electrónico en Git: $ git config user.email email@example.com
- 
Agrega la dirección de correo electrónico a tu cuenta en GitHub, de modo que las confirmaciones se te atribuyan y aparezcan en el gráfico de contribuciones. Para más información, consulta Adding an email address to your GitHub account. 
Next steps
For reference information, see Referencia de direcciones de correo.
To learn more about using a private email address, see Referencia de direcciones de correo.