Answers for "change email in git"

6

git change username email

# FOR ALL REPOS
## change username
git config --global user.name "John Doe"
## change email address
git config --global user.email "[email protected]"

# FOR CURRENT-DIRECTORY REPO ONLY
## change username
git config user.name "John Doe"
## change email address
git config user.email "[email protected]"
Posted by: Guest on May-17-2021
35

how to change a user email for a project in git

$ git config --global user.name "John Doe"
$ git config --global user.email [email protected]
Posted by: Guest on February-08-2020
13

set email git

git config --global user.email "[email protected]"
Posted by: Guest on March-21-2020
9

git change email

git config --global user.email "[email protected]"
Posted by: Guest on November-01-2020
2

change email in git

$ git config --global user.email "[email protected]"
Posted by: Guest on February-07-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language