git使用时让http记住帐号密码
转载
mb5ff40b968831d2017-11-12 20:53:00
文章标签git记住密码.net云平台自定义文章分类Java后端开发阅读数54
见 http://git.mydoc.io/?t=154710
https 方式每次都要输入密码,按照如下设置即可输入一次就不用再手输入密码的困扰而且又享受 https 带来的极速
按照以下设置记住密码十五分钟:
git config --global credential.helper cache
- 1.
如果你想自定义记住的时间,可以这样:
git config credential.helper 'cache --timeout=3600' //这里记住的是一个小时,如需其他时间,请修改3600为你想修改的时间,单位是秒
- 1.
你也可以设置长期记住密码:
git config --global credential.helper store
- 1.
或修改仓库的地址带上你的账号密码----jenkinslog 暴露密码文章来源:https://www.toymoban.com/news/detail-509779.html
http://yourname:password@git.oschina.net/name/project.git //注意,码云平台同时支持个性地址与邮箱,当使用邮箱时,请对@符号使用%40替换
- 1.
如果你原本使用的 ssh 地址想更换成 http(s) 地址,可以执行以下命令:文章来源地址https://www.toymoban.com/news/detail-509779.html
//删除原本的ssh仓库地址
git remote rm origin //origin 代表你原本ssh地址的仓库的别名
//新增http地址的仓库
git remote add origin http://git.oschina.net/username/project.git
到了这里,关于git使用时让http记住帐号密码~转的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!