41
33

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

gitのproxy設定をリポジトリごとに変える方法

Last updated at Posted at 2016-06-30

動機

私の職場では社外アクセスにProxyが必要なのですが、git config --global http.proxy http://[proxy]:[port]をすると、社内のリポジトリにアクセスできなくなってしまうため。
公式ドキュメントにやり方が載っていたのですが、ググっても意外と日本語情報がなかったのでメモ代わりにまとめました。

対象バージョン

Git 1.8.5以降

方法

# git config --global http.<url>.proxy [ProxyサーバーのURL]
で、GitサーバーごとのProxyを指定できます。
下記のように空文字を入れると、Proxyを使用せずにアクセスするようになります。
# git config --global http.http://example.com/.proxy ""

~/.gitconfigファイルは下記のようになります。

[http]
	proxy = http://proxy.acme.com:8080

[http "http://example.com/"]
	proxy = 

# git config --global --get-urlmatch http.proxy [リポジトリURL]
で、指定したURLで使われるProxy設定を確認できます。

41
33
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
41
33

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?