-1

試してみると、次のエラーが表示されます

git pull https://github.com/<username>/<repo_name>.git

error: SSL connection timeout while accessing https://github.com/<username>/<repo_name>.git/info/refs

fatal: HTTP request failed

何を正しく設定していませんか? より詳細なエラー メッセージを出力するにはどうすればよいですか?

4

1 に答える 1

1

クローンオプションを使用するべきではありませんか?

git clone https://github.com/<username>/<repo_name>.git

接続の問題を解決するには、次のフラグを設定します

export GIT_CURL_VERBOSE=1 

http://git.661346.n2.nabble.com/Is-there-a-debug-mode-for-git-clone-https-traffic-td6375651.html経由

于 2013-07-28T17:48:35.880 に答える