git 错误:402您访问的页面不存在!

mxg2im7a  于 2023-11-15  发布在  Git
关注(0)|答案(4)|浏览(118)

我在bitbucket上更改了密码,现在Android Studio无法在事件日志上推送错误:

Push failed: Failed with error: fatal: unable to access 'https://[email protected]/USERNAME/REPOSITORY.git/': The requested URL returned error: 402

字符串
如何解决?

tjrkku2a

tjrkku2a1#

这只是发生在我身上,修复方法是从我的存储库中删除一些用户。Bitbucket的免费计划附带无限的私人存储库,因此,删除您的存储库可能不会有任何影响。但是,您最多只能添加5个用户。

aiqt4smr

aiqt4smr2#

此服务器响应是由于您已超过Bitbucket的免费限制。您有两个选择:
1.升级Bitbucket服务器许可证
1.删除一些你不再需要的旧仓库。

6ovsh4lw

6ovsh4lw3#

对我来说,解决方案是删除用户没有访问仓库。

wfveoks0

wfveoks04#

// make sure your git credentials are up-to-date with your new password

git config --global credential.helper wincred  // For Windows

git config --global credential.helper cache    // For macOS & Linux
git remote -v // your remote repo is updated with your new password

// if your url contain your old username & password update it using

git remote set-url origin https://[email protected]/USERNAME/REPOSITORY.git
// re-enter your credentials

相关问题