2017-01-03 60 views
-1

我'試圖通過利用下面的命令來克隆buildroot repository無法克隆Buildroot裏面庫

> git clone https://github.com/buildroot/buildroot.git 
Cloning into 'buildroot'... 
fatal: unable to access 'https://github.com/buildroot/buildroot.git/': Could not resolve host: github.com 

能否請你幫我undrestand有什麼不對這個命令?

編輯

nslookup github.com結果是:

> nslookup github.com 
;; Got SERVFAIL reply from 192.168.249.10, trying next server 
;; connection timed out; no servers could be reached 
+1

的命令是不錯,看來你的網絡設置有問題。 Git無法解析域'github.com'。 – sebasgo

+0

@sebasgo謝謝你,我可以訪問瀏覽器的鏈接,「網絡設置」你的意思是有防火牆或其他,我該如何檢查? – Mouin

+1

是你能克隆一些其他庫 –

回答

0

的問題得到解決。

我做了什麼: 在Firefox瀏覽器

preferences 
    advanced:network:settings 

有瀏覽器HTTP Proxy=my_proxyPort=my_port的代理設置。

我配置HTTPS_PROXY如下:

export HTTPS_PROXY=my_proxy:my_port 

而且克隆按預期工作。

我繼續這個解決方案,因爲鏈接可以用瀏覽器打開,而不是用命令行打開,所以肯定shell shell env變量中缺少配置。

類似的問題(由@Deepak Mahakale指出):could not resolve host github.com error while cloning remote repository in git