本文介绍了如何解决请求的 URL 返回错误:git 存储库中的 403的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在 git 中有多个帐户,三周前我用这个帐户提交了代码.我将无法提取我的代码.我得到了请求URL 返回错误:403我会尝试
I have multiple accounts in git I committed code three weeks back with this account. I'll unable to pull my code . I was getting The requestedURL returned error: 403I'll try Pushing to Git returning Error Code 403 fatal: HTTP request failed but I couldn't solved my error
git -c diff.mnemonicprefix=false -c core.quotepath=false fetch origin
remote: Forbidden
fatal: unable to access
'https://chantidurgam@bitbucket.org/chantidurgam/patanjali.git/': The requested
URL returned error: 403
Completed with errors, see above.
解决方案
What needs to be checked before anything else is the access level
, which should be set to write
. This can happen if you were added to the repo by someone else, and they forgot to grant you the required permissions.
这篇关于如何解决请求的 URL 返回错误:git 存储库中的 403的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!