git view and modify account mailboxes

  1. View the current login account:
git config user.name
  1. Check the current login email:
git config user.email
  1. Modify username and email:
git config --global user.name "Your_username"
git config --global user.email "Your_email"

Guess you like

Origin blog.csdn.net/qq_34626094/article/details/123706941