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" 切换邮箱。

阅读量:46
阅读量:148
阅读量:103
阅读量:163
阅读量:100