我最近一直在访问我的git存储库时遇到问题。它之前工作得非常好,但现在我无法在CLI上运行任何命令。但是,我可以访问相应的网页,有人可以帮我解决这个问题吗?
答案 0 :(得分:55)
使用连接到 BitBucket 存储库的 SourceTree 时出现同样的错误。
导航到bitbucket.org上的存储库网址时,会显示警告消息:
此存储库处于只读模式。你抓住我们做了一些快速维护。
大约2小时后,可以再次访问存储库。
您可以在此处查看bitbucket的状态和正常运行时间: http://status.bitbucket.org/
答案 1 :(得分:24)
在这里,您可以看到他们网站上的最新更新状态
如果Git via HTTPS
状态为Major Outage
,您将无法拉/推,让此状态变为绿色
HTTP错误503 - 服务不可用
答案 2 :(得分:19)
尝试禁用所有系统范围的HTTP和HTTPS代理:
export http_proxy=""
export https_proxy=""
export HTTP_PROXY=""
export HTTPS_PROXY=""
答案 3 :(得分:15)
它在bitbucket结束时的问题。
您可以在http://status.bitbucket.org/
查看其服务的状态目前bitbucket发生HTTPS
次中断。见下文
您可以使用SSH
选项。我刚刚使用SSH
选项和sourcetree
。
答案 4 :(得分:8)
与“CocoaPods - pod setup http request failed”一样,访问(克隆)公共存储库时出现503错误可能是GitHub故障(可用性问题)的结果
稍后重试通常有效。
答案 5 :(得分:7)
50X错误是内部服务器错误。你的结果没有任何问题,但是服务器端的问题就出现了。
http://www.checkupdown.com/status/E503.html
Web服务器(运行Web站点)当前无法处理 由于临时过载或维护而导致的HTTP请求 服务器。这意味着这是一个暂时的条件 经过一段时间的推迟会缓解。
耐心等待。 : - )
答案 6 :(得分:1)
尝试克隆heroku git存储库时收到了同样的错误。
在访问heroku仪表板时,我看到一个警告,该工具正在维护中,并且应该在几个小时后回来。
Cloning into 'foo-repository'...
remote: ! Heroku has temporarily disabled this feature, please try again shortly. See https://status.heroku.com for current Heroku platform status.
fatal: unable to access 'https://git.heroku.com/foo-repository.git/': The requested URL returned error: 503
如果收到相同的错误,请检查服务状态
答案 7 :(得分:0)
这是git中的服务问题。该站点将处于维护中。维护工作完成后,请尝试一次。
答案 8 :(得分:0)
此问题不仅由no_proxy
创建,因为它也是由git server down
问题创建的。
因此,首先发生此问题时,请在浏览器中打开并检查gitlab。
然后检查它是否显示任何错误,例如"503 An internal server error occured".
。
gitlab显示"503"
页,此问题由gitlab服务器创建,不在您的系统中。
因此,您需要等待一段时间,直到服务器启动并继续工作。
答案 9 :(得分:0)
每个人都请避免修改帖子缓冲区并将其建议给其他人。在某些情况下可能会有所帮助,但在其他情况下会有所帮助。如果您已经修改了发布缓冲区以推送大型项目。使用以下命令撤消它。
git config --global --unset http.postBuffer
git config --local --unset http.postBuffer
我修改了我的帖子缓冲区,以解决git遇到的问题之一,但这是我以后git出现问题的原因。
答案 10 :(得分:0)
我今天遇到了同样的错误。显然,Google Compute Engine 今天停机了 2-3 个小时(GitLab 使用它)。到那时,我不得不使用 VPN 才能从 repo 中提取更新。我不想等。
pranav@exam ~/j/just-perfection-gnome-shell-desktop (master) git pull
fatal: unable to access 'https://gitlab.com/justperfection.channel/just-perfection-gnome-shell-desktop.git/': The requested URL returned error: 503
git: 'gitlab-rake' is not a git command. See 'git --help'.
pranav@exam ~/j/just-perfection-gnome-shell-desktop (master) [1]> nordvpn connect us
Connecting to United States #8244 (us8244.nordvpn.com)
You are connected to United States #8244 (us8244.nordvpn.com)!
pranav@exam ~/j/just-perfection-gnome-shell-desktop (master)> git pull
remote: Enumerating objects: 149, done.
remote: Counting objects: 100% (149/149), done.
remote: Compressing objects: 100% (99/99), done.
remote: Total 118 (delta 88), reused 23 (delta 15), pack-reused 0
Receiving objects: 100% (118/118), 710.93 KiB | 289.00 KiB/s, done.
Resolving deltas: 100% (88/88), completed with 19 local objects.
From https://gitlab.com/justperfection.channel/just-perfection-gnome-shell-desktop
3008d67..5cf51ac master -> origin/master
Successfully rebased and updated refs/heads/master.
所以我给你的建议是要么等待它重新上线,要么尝试使用 VPN 看看它是否有效。这是上面专家提到的服务器端问题。
答案 11 :(得分:-11)
解决方案:
错误:请求的URL返回错误:503访问时
可以通过删除现有的git文件夹来解决错误。