2012-12-22 66 views
7

我收到錯誤的git沒有完全退出(退出代碼128)龜Git的同時推我的變化掌握在GitHub上混帳推錯誤:HTTP請求失敗:請求的URL返回504

git.exe push -v --progress "origin" master:master 

Pushing to https://github.com/myproj/Net.git 
error: The requested URL returned 
error: 504 while accessing 
https://github.com/myproj/Net.git/info/refs?service=git-receive-pack 
fatal: HTTP request failed 

git did not exit cleanly (exit code 128) (63228 ms @ 22-12-2012 23:57:48) 

我已經提到How to resolve "git did not exit cleanly (exit code 128)" error on TortoiseGit?

但我使用的是HTTPS而不是SSH。我的意思是我使用GITHub的HTTPS url進行克隆。 我也不知道如何獲得SSH生成!

enter image description here

什麼會被修復?如此地

回答

4

The 504 Gateway Timeout error is an HTTP status code that means that one server did not receive a timely response from another server that it was accessing while attempting to load the web page or fill another request by the browser.

This usually means that the other server is down or not working properly.

這是一致的與當前GitHub status(12月的22D):

We are currently experiencing major service outages across all services.

因此,儘管原因是相當準時,具體到當前網絡問題在GitHub端,你的問題可以幫助別人提供類似的錯誤信息:

504意思是:上游服務器有問題。

+0

謝謝。它是有益的 –

相關問題