如何解决请求的URL返回错误:git repository中的403

问题描述 投票:3回答:1

我在git中有多个帐户我使用此帐户三周后提交了代码。我无法提取我的代码。我收到请求的URL返回错误:403我会尝试Pushing to Git returning Error Code 403 fatal: HTTP request failed 但我无法解决我的错误

git -c diff.mnemonicprefix=false -c core.quotepath=false fetch origin
remote: Forbidden
fatal: unable to access 
'https://[email protected]/chantidurgam/patanjali.git/': The requested 
URL returned error: 403

完成但有错误,请参见上文。

git bitbucket atlassian-sourcetree pull-request git-pull
1个回答
4
投票

使用git cli和sourcetree时我遇到了同样的问题 - 并且执行以下操作解决了它。

这基本上是一个auth问题,git已经存储了我对bitbucket和github的信任。我所要做的就是使用sourcetree删除这些保存的条目。

我正在使用SourceTree,所以转到工具 - >选项 - >身份验证

在git保存的密码下,我将它们全部删除了。

这篇文章也可以通过其他方式做同样的事情。

Remove credentials from Git

© www.soinside.com 2019 - 2024. All rights reserved.