# show current user name and email
https://stackoverflow.com/questions/46941346/how-to-know-the-git-username-and-email-saved-during-configuration
git config --list
# set user name and email
git config --global user.name "My Name"
git config --global user.email "myemail@example.com"
No comments:
Post a Comment