1
1

More than 3 years have passed since last update.

【メモ】gitでプロキシ設定をする

Posted at
  • 製造業出身のデータサイエンティストがお送りする記事
  • 今回はメモとして、Gitでプロキシ設定する方法を整理しておきます。

Gitのプロキシ設定方法

下記コマンドで簡単に設定できます。

git config --global http.proxy http://proxy.hogehoge.com:8080
git config --global https.proxy http://proxy.hogehoge.com:8080

下記コマンドでプロキシが設定できたか確認できます。

git cohnfig --global --list | grep proxy
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1