git clone时,报403错误,完美解决方案
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git clone时,报403错误,完美解决方案相关的知识,希望对你有一定的参考价值。
参考技术A 执行 git clone [url]操作结果如下:
Cloning into 'git'...
remote: Coding.net Tips : [Permission denied!]
fatal: unable to access 'https://git.coding.net/xxxxx/git/': The requested URL returned error: 403
git缓存了错误的账号和密码.
https方式每次都要输入密码,按照如下设置即可输入一次就不用再手输入密码的困扰而且又享受https带来的极速
设置记住密码(默认15分钟):
git config --global credential.helper cache
如果想自己设置时间,可以这样做:
git config credential.helper 'cache --timeout=3600'
这样就设置一个小时之后失效
长期存储密码:
git config --global credential.helper store
1.http://username:password@git.coding.net/name/project.git 这样就可以让当前操作以输入的用户名和密码登录
2.运行命令:rm ~/.git-credentials,删掉git config --global credential.helper store保存的账号和密码。回到每次输入用户名和密码。
原文:http://www.cnblogs.com/jarvisjin/p/5915419.html
以上是关于git clone时,报403错误,完美解决方案的主要内容,如果未能解决你的问题,请参考以下文章
怎样解决IntelliJ IDEA git操作报403的错误
针对 AWS CodeCommits 运行 git clone 得到 403 错误
实操-完美解决repo init 错误 fatal: Cannot get https://gerrit.googlesource.com/git-repo/clone.bundle
实操-完美解决repo init 错误 fatal: Cannot get https://gerrit.googlesource.com/git-repo/clone.bundle
实操-完美解决repo init 错误 fatal: Cannot get https://gerrit.googlesource.com/git-repo/clone.bundle