korechi’s diary

とあるVR/ARエンジニアのブログ

2016-06-22から1日間の記事一覧

proxy配下でgitを使ったinstallコマンドがつかえない時の解決法

まず、最も簡単な解決法としては、 $ vim ~/.gitconfig とgitconfigを開き [http] proxy = http://proxy.example.com:8080 [https] proxy = http://proxy.example.com:8080 こう書いて保存する。 これでcloneはできるはず。 $ git config --list で設定を確…