Git代理問題error: Couldn't resolve proxy 'to' while...

最近想學習一下Go語言。在虛擬機下的Ubuntu1210下使用go get下載github上的package的時候會調用git clone去下載github上的代碼,由於我是代理的環境(外網NTLM代理,本機使用ntlmaps架了ntlm轉http的代理),因此要設置代理:git

<p> ``` git config --global http.proxy to http://127.0.0.1:5865 ``` <p> 通常在windows上用Git Bash就能夠使用http協議鏈接了。但是在ubuntu里老是報錯<code>error: Couldn't resolve proxy 'to' while accessing</code>,我記得已經不是第一次遇到這個問題了,在網上搜了一下,也有差很少的問題,不過都是沒有代理的狀況,直接把```~/.gitconfig```中的代理刪掉就能夠。若是用代理的話,我想改一下.gitconfig的內容應該也能夠。 <p> <pre> [http] proxy = to [https] proxy = to [http "proxy"] to = http://127.0.0.1:5865 [https "proxy"] to = http://127.0.0.1:5865 </pre> <p> 若是我只有一個代理,爲何還要靠中間變量命名呢?直接改掉! <p> <pre> [http] proxy = http://127.0.0.1:5865 [https] proxy = http://127.0.0.1:5865 </pre> <p> 不知道是bug仍是個人錯覺- -!<p>記一下,免得之後再折騰它。github

相關文章
相關標籤/搜索