赞
踩
git config user.name
git config user.password
git config user.email
git config user.email
设置全局用户
git config --global user.name xxxx(新的用户名)
修改全局密码
git config --global user.password xxxx(新的密码)
修改全局邮箱
git config --global user.email xx@xx.com(新的邮箱)
也可以直接进行替换
git config --global --replace-all user.name your.name
git config --global --replace-all user.email xxx@xxx.com
git config --global credential.helper store
设置后进行全局认证一下
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。