spm拉取代碼需要訪問github,而其不走終端,拉取依賴庫總是失敗
前提需要有代理.
解決辦法:
需要將端口改為自己的代理端口
通常代理軟件可以獲取端口,如果找不到可以打開網(wǎng)絡(luò)偏好設(shè)置->高級->代理查看,如圖所示
git config --global http.proxy "http://127.0.0.1:58591"
git config --global https.proxy "http://127.0.0.1:58591"
取消方法
git config --global --unset http.proxy
git config --global --unset https.proxy