Ubuntu 使用git無法擷取源碼的解決方案,ubuntugit
問題1:fatal: unable to access ‘https://github.com/libevent/libevent.git/‘: Failed to connect to 127.0.0.1 port 46859: Connection refused
解決辦法:
查看所有的代理連結
wei@ubuntu:~/Desktop/Code/CPP/Libevent$ env|grep -i proxy
結果:
NO_PROXY=localhost,127.0.0.0/8,::1http_proxy=https://127.0.0.1:46859/https_proxy=https://127.0.0.1:46859/HTTPS_PROXY=https://127.0.0.1:46859/no_proxy=localhost,127.0.0.0/8,::1HTTP_PROXY=https://127.0.0.1:46859/
把所有的代理連結都清空
wei@ubuntu:~/Desktop/Code/CPP/Libevent$ export http_proxy=""wei@ubuntu:~/Desktop/Code/CPP/Libevent$ export https_proxy=""wei@ubuntu:~/Desktop/Code/CPP/Libevent$ export HTTP_PROXY=""wei@ubuntu:~/Desktop/Code/CPP/Libevent$ export HTTPS_PROXY=""
擷取libevent代碼
wei@ubuntu:~/Desktop/Code/CPP/Libevent$ git clone https://github.com/libevent/libevent.git
結果:
Cloning into 'libevent'...remote: Counting objects: 21397, done.remote: Compressing objects: 100% (3/3), done.remote: Total 21397 (delta 0), reused 1 (delta 0), pack-reused 21394Receiving objects: 100% (21397/21397), 9.16 MiB | 2.18 MiB/s, done.Resolving deltas: 100% (15150/15150), done.