git 查看/修改用户名、密码
- 查看用户名和邮箱地址:
$ git config user.name $ git config user.email
- 修改用户名和邮箱地址:
$ git config --global user.name "username" $ git config --global user.email "email"
原文地址:https://www.cnblogs.com/llfy/p/9375506.html
时间: 2024-10-07 09:56:10