重新换账号
#重新换账号
设置Git的user name和email
git config --global user.name "xiaokang69"
git config --global user.email "66500852@qq.com"
git config --global user.email "wangxiaokang@xdgames.net"
git config --global user.name "wangxiaokang"
查看
git config --list //查看git设置情况
清空凭证 重新输入账号密码
git config credential.helper
使用这个命令后不需要再输入账号和密码
git config --global credential.helper store