Thursday, 2 February 2023

git checkou and set name and email

 https://stackoverflow.com/questions/46941346/how-to-know-the-git-username-and-email-saved-during-configuration


check:

git config user.name
git config user.email

set:
git config --global user.name "your Name"
git config --global user.email "your_email@example.com"

No comments:

Post a Comment