切换Git账号

切换Git账户

查看用户名

  git config user.name

查看用户名

  git config user.email

修改用户名和邮箱的命令

  git config --global user.name "userName" 
  git config --global user.email "userEmail" 

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

你可能感兴趣的:(切换Git账号)