Gitにプロキシを設定する
2021-02-161 min read
目次
概要
Gitでプロキシを通しておくメモです。
プロキシを設定する
以下のコマンドでproxyを通します。
※ http://proxy.example.com:8080
がプロキシのURLとなります。
git config --global http.proxy http://proxy.example.com:8080
git config --global https.proxy http://proxy.example.com:8080
確認
以下のコマンドでプロキシが設定されたか確認できます。
git config --global --list | grep proxy
もしくは、ホームディレクトリ直下のファイルを直接閲覧します。
cat ~/.gitconfig
# [http]
# proxy = http://proxy.example.com:8080
# [https]
# proxy = http://proxy.example.com:8080
Recommends
New Posts
Hot posts!
Date
Tags
(110)
(54)
(54)
(47)
(45)
(36)
(30)
(29)
(24)
(24)
(22)
(21)
(21)
(20)
(19)
(17)
(16)
(16)
(15)
(14)
(12)
(12)
(12)
(12)
(12)
(12)
(11)
(10)
(10)
(10)
(10)
(10)
(9)
(9)
(8)
(8)
(8)
(8)
(7)
(7)
(6)
(6)
(6)
(6)
(6)
(5)
(5)
(5)
(5)
(4)
Author