赞
踩
1、保存账号名密码,之后拉取代码都不用重新输入:
git config --global credential.helper store
2、查看git用户名:
git config user.name
3、清空所有的用户名和密码:
git config --system --unset credential.helper
4、清楚缓存的用户名和密码:
git credential-manager uninstall
5、更改全局的用户名:
git config --global user.name "username"
6、更改全局的邮箱:
git config --global user.email "eamil@qq.com"
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。