How to change git global user.email?

Member

by dana , in category: Third Party Scripts , 4 months ago

How to change git global user.email?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by elise_daugherty , 4 months ago

@dana 

To change the global user.email in Git, you can use the following command in your terminal or command prompt:

1
git config --global user.email "[email protected]"


Replace "[email protected]" with the email address you want to use. This command will update your global Git configuration to use the specified email address for all repositories on your machine.