git之ssh与https地址之间的切换设置免密码访问服务器remoteset-urlconfigglobalcredentialhelperstorecacheorigin
Posted web半晨
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git之ssh与https地址之间的切换设置免密码访问服务器remoteset-urlconfigglobalcredentialhelperstorecacheorigin相关的知识,希望对你有一定的参考价值。
目录
1、查看当前属于什么地址的命令
git remote -v
如果当前处于ssh状态下会输出一下内容。
origin git@gitee.com:mssj200224/open-resources.git (fetch) origin git@gitee.com:mssj200224/open-resources.git (push)
如果当前处于https状态下会输出一下内容。
origin https://git@gitee.com:mssj200224/open-resources.git (fetch) origin https://git@gitee.com:mssj200224/open-resources.git (push)
2、从ssh切换至https
git remote set-url origin https://git@gitee.com:mssj200224/open-resources.git
origin
后面是远程仓库的https
地址。
3、从https切换至ssh
git remote set-url origin git@gitee.com:mssj200224/open-resources.git
origin
后面是远程仓库ssh
地址。
4、设置密码
默认15分钟
git config --global credential.helper cache
自己定义时间,一小时后失效
git config credential.helper 'cache --timeout=3600'
永久存储密码
git config --global credential.helper store
开发者涨薪指南
48位大咖的思考法则、工作方式、逻辑体系
以上是关于git之ssh与https地址之间的切换设置免密码访问服务器remoteset-urlconfigglobalcredentialhelperstorecacheorigin的主要内容,如果未能解决你的问题,请参考以下文章