众所周知,添加密钥可以很好的解决.但遇到我这样的,今天突然想到如果用https拉取如何免交互,之前听说
修改.git
目录中的config
将其中的
【remote "origin"】
url = https://[用户名]:[密码]@github.com/.........
有没有更好的方法啊,结果一查还真有
允许git保存凭证
可以是项目级的,也可以是全局的
git config --global credential.helper store
默认情况下会生成如下信息
cat ~/.git-credentials
https://user:12345678@git.xxxx.me
懂了?道理还是一样.
当然也可以手动指定存储位置
git config --global credential.helper store --file ~/.my-credentials