git如何切换用户
1、打开 git bash。

2、 可以查看用户名:git config user.name

3、切换用户:git config --global user.name "xxx"

4、切换邮箱:git config --global user.email "xxx"。

5、切换成功。

6、总结:
1. git config user.name 查看用户名
git config user.email 查看邮箱
2. git config --global user.name "xxx" 切换用户。
git config --global user.email "xxx" 切换邮箱。

阅读量:94
阅读量:111
阅读量:157
阅读量:44
阅读量:193