1
turing 2013-09-03 20:09:16 +08:00
|
2
zhttty 2013-09-03 20:16:03 +08:00
https倒是没研究过,不过严重推荐使用ssh git的原生协议方式,密码存在~/.ssh目录文件下,一个私钥,一个公钥。
|
3
ayanamist 2013-09-03 20:20:13 +08:00
应该是放在~/.netrc里? https://gist.github.com/technoweenie/1072829 https://code.google.com/p/support/wiki/GitFAQ#I_put_my_credentials_in_.netrc_,_so_why_does_git_still_ask_me_fo
@zhttty 现在GitHub对只读权限默认走https |
4
clydelin OP @ayanamist
@zhttty 我现在用 http://git.oschina.net/ 也就是 gitlab了。 ~/.ssh 下没有公钥 私钥, ~/.netrc下也没有相关文件 我现在就很疑惑 为什么不用输入密码 |
6
msg7086 2013-09-03 20:45:40 +08:00
你连接的时候是用https还是git@
|
9
kfll 2013-09-03 21:25:22 +08:00
看源码吧
https://github.com/git/git/blob/master/credential.c 或者 man git-credential 如果要保存到本地,看 git-credential-store 和 git-credential-cache,对应的源码看名字就能找到了。 如果要看调用的地方,看 https://github.com/git/git/blob/master/http.c |
10
PHILO10 2014-10-03 11:50:05 +08:00
我估计你要的是这个:
git config --global credential.helper store 你输入一次之后就会被记录账号密码以后就不用账号密码就能提交代码了 |