1. ホーム
  2. git

[解決済み] git cloneで500エラーが発生します。

2022-02-07 05:20:27

質問

新しく作成したリポジトリをクローンすることができません。以下のエラーが発生します。

$ git clone https://github.xxxxx.com/zzzzzz.git
Cloning into 'zzzzzz'...
Username for 'https://github.xxxxxx.com': yyyyy
Password for 'https://[email protected]':
remote: Internal Server Error.
remote:
fatal: unable to access 'https://github.xxxxxx.com/zzzzz.git/': The requested URL returned error: 500

以下のURLの指示に従い、ssh鍵の生成とgithub設定の鍵の更新に成功しました。

https://help.github.com/articles/generating-ssh-keys/

を実行したところ、認証に成功しました。 git -T [email protected]

また、私の理解では、ssh を設定すれば、git clone コマンドはユーザ名とパスワードを要求しないはずです。しかし、まだそれらを要求しています。

debug1: Authentication succeeded (publickey).
Authenticated to github.xxxxx.com ([10.28.22.44]:22).
debug1: channel 0: new [client-session]
debug1: Entering interactive session.
Hi xxxx! You've successfully authenticated, but GitHub does not provide shell access. 
debug1: channel 0: free: client-session, nchannels 1
Transferred: sent 3880, received 1696 bytes, in 0.2 seconds
Bytes per second: sent 19132.2, received 8363.0
debug1: Exit status 1

解決方法は?

これはおそらく、GitHub のサービスの問題です。おすすめは 連絡先 をクリックし、何が問題なのかを説明してください。

Wikipediaではこのように説明されています。 500 レスポンスコード

500 内部サーバーエラー

予期せぬ事態が発生した場合に表示される一般的なエラーメッセージです。 に遭遇し、これ以上の具体的なメッセージは適切でない。

基本的に、GitHub のエンドポイントで何か問題が発生したのです。


しかし SSHキーはすでに設定されているので、ssh urlを使用してリポジトリをクローンすることができます。

git clone [email protected]:owner/repo.git