Friday, 23 September 2022

git config

# 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