D:\wamp\www\ypa>git push origin master
Username for 'https://github.com':
有什么方法可以保存用户名和密码的吗?
修改 gitconfig文件
https://[userName]:[password]@github.com/[username]/project.git
######使用ssh key
或者
长期存储密码:
git config --global credential.helper store
保存了什么密码?store这个字符串。。。怎么长期保存密码。。。
我用了这个命令了,现在后悔了,想回到这条命令之前的样子,就是取消这条命令,应该怎么办?
因为用过这条命令之后,git push origin master 没反应了,就一个光标在跳,没有任何反应了。。。
git config --global credential.helper store
怎么去掉这个credential的配置?
D:\wamp\www\ypa>git config -l | grep "credential" credential.helper=store
D:\wamp\www\ypa>
哦,我用unset去掉了 D:\wamp\www\ypa>git config --unset credential.helper
但我还是不知道怎么修改gitcofig文件。。。
###### 我用了这个命令了,现在后悔了,想回到这条命令之前的样子,就是取消这条命令,应该怎么办?
因为用过这条命令之后,git push origin master 没反应了,就一个光标在跳,没有任何反应了。。。
git config --global credential.helper store
怎么去掉这个credential的配置?
D:\wamp\www\ypa>git config -l | grep "credential" credential.helper=store
D:\wamp\www\ypa>
哦,我用unset去掉了 D:\wamp\www\ypa>git config --unset credential.helper
但我还是不知道怎么修改gitcofig文件。。。
不修改文件,可以通过命令行方式实现
git remote -v //查看当前的远程仓库 git remote rm origin //如果你的远程仓库别名叫origin的话,删除 git remote add origin repo_url //添加远程仓库
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。