Git用户管理--查看与修改用户名、邮箱

查看git用户与邮箱:

git config user.name
git config user.email

修改git用户与邮箱:

git config --global user.name "xxx"
git config --global user.email "xxx"

猜你喜欢

转载自blog.csdn.net/qq_28379809/article/details/81357314