赞
踩
1、查看用户名
git config user.name
2、查看密码
git config user.password
3、查看邮箱
git config user.email
4、查看配置信息
git config --list
1、设置用户名
1)覆盖
git config --global user.name "xxxx(用户名)"
2)替换
git config --global --replace-all user.name "xxxx(用户名)"
2、设置密码
1)覆盖
git config --global user.password "xxxx(密码)"
2)替换
git config --global --replace-all user.password "xxxx(密码)"
3、设置邮箱
1)覆盖
git config --global user.email "xxxx@xxx.com(邮箱)"
2)替换
git config --global --replace-all user.email "xxxx@xxx.com(邮箱)"
1、设置用户名
git config --global --unset user.name "xxxx(用户名)"
2、设置密码
git config --global --unset user.password "xxxx(密码)"
3、设置邮箱
git config --global --unset user.email "xxxx@xxx.com(邮箱)"
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。