2

エラーが発生したとき

fatal: The remote end hung up unexpectedly

何が起こっているのかを把握するために、どのようなテストを実行できますか? まったく新しい git リポジトリを作成しましたが、プッシュされません!

他の StackOverflow の質問で提案されている標準的な診断の一部を次に示します。

$ ssh -T git@github.com
Hi keflavich! You've successfully authenticated, but GitHub does not provide shell access.

私はsshを使用するように設定されています:

$ git remote -v
origin  git@github.com:keflavich/turbulence_pdfs.git (fetch)
origin  git@github.com:keflavich/turbulence_pdfs.git (push)

X11 認証に関する警告が表示されます。

$ git push -vu origin master
Pushing to git@github.com:keflavich/turbulence_pdfs.git
Warning: untrusted X11 forwarding setup failed: xauth key data not generated
Warning: No xauth data; using fake authentication data for X11 forwarding.
fatal: The remote end hung up unexpectedly

しかし、これらは問題ではありません。

編集: https も機能しません...これは単なる github サービスの停止でしょうか?

error: The requested URL returned error: 403 while accessing https://github.com/keflavich/turbulence_pdfs.git/info/refs
4

2 に答える 2

1

私はbitbucketで同じ問題を抱えていました.次のように、より大きなhttpポストバッファを設定する問題を解決しました:

git config --global http.postBuffer 524288000
于 2014-01-30T06:28:44.377 に答える