Git如何切换账户


git config user.name

查看用户名

git config user.email

查看用户邮箱

修改用户名和邮箱的命令

git config --global user.name "Your_username"
git config --global user.email "Your_email"

有一点要注意, user.name/email后面千万记得加空格,否则你就是提交了,Git也不会提醒你配置出错

相关推荐