2020年8月16日 星期日

[Git] 設定Proxy Server

[Git] 設定Proxy Server

[Git] 設定Proxy Server

簡介

由於公司上網時必須透過代理伺服器(Proxy Server)才能連到外部網路,而使用Git也需要設定代理伺服器(Proxy Server)。

設定Git Proxy Server

  • 設定Proxy Server與設定不檢查SSL

    # 假設代理伺服器: http://proxy:80 
    git config --global https.proxy http://proxy:80
    git config --global http.proxy http://proxy:80
    git config --global http.sslVerify false
    
  • 如有帳密驗證的話,則可改為以下指令

    git config https.proxy http://username:password@host:port
    git config http.proxy http://username:password@host:port
    git config --global http.sslVerify false
    
  • 取消Proxy Server設定

    git config --global --unset http.proxy
    git config --global --unset https.proxy
    git config --global --unset http.sslVerify
    


參考資料

如有錯誤或建議,歡迎留言指教,謝謝!!

(相關內容如有侵犯隱私或著作權,請協助通知刪除,感謝)

沒有留言:

張貼留言