1

https://github.com/RestKit/RestKit.gitから RestKit を複製しようとしています。
これは私がこれまでに行ったことです:

  1. gitをインストールしました。

  2. .gitconfig正しいパラメータでファイルを設定します~/

    [user]  
        name = myName   
        email = myEmail  
    [http]  
        proxy = http://<username for proxy>:<password for proxy>@PROXY:8080  
        sslverify = false  
    [https]  
        proxy = https://<username for proxy>:<password for proxy>@PROXY:8080  
    
  3. 次のようにクローンコマンドを開始しました。

    git clone https://github.com/RestKit/RestKit.git  
    

次のエラーが表示されます。

Cloning into 'RestKit'...  
error: Could not resolve host: (nil); nodename nor servname provided, or not known while accessing https://github.com/RestKit/RestKit.git/info/refs?service=git-upload-pack  
fatal: HTTP request failed  

私は何が欠けていますか?

更新:
.gitconfig ファイルの http.proxy を
http://:8080 に置き換えると

つまり、資格情報がないと、次のエラーが発生します。

Cloning into 'RestKit'...  
error: The requested URL returned error: 407 while accessing https://github.com/RestKit/RestKit.git/info/refs?service=git-upload-pack  
fatal: HTTP request failed  
4

2 に答える 2