赞
踩
1.1查看 用户名,密码
$ git config user.name
$ git config user.email
2.1修改 用户名,密码
$ git config --global user.name "username"
$ git config --global user.email "email"
1、配置用户信息
git config --global user.name [username]
git config --global user.email [email]
2、查询用户信息
git config --list
3、如果push遇到在输入密码是熟错后,就会报这个错误fatal: Authentication failed for
解决办法:
git config --system --unset credential.helper
之后你在push就会提示输入名称和密码
每次git都需要输入用户名和密码的解决方法
git bash进入你的项目目录,输入:
git config --global credential.helper store
然后会在本地生成一个文本,上边记录账号和密码
然后你使用上述的命令配置好之后,再操作一次git pull,然后它会提示你输入账号密码,这一次之后就不需要再次输入密码了。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。