回答編集履歴

1

情報追加

2016/08/31 12:56

投稿

退会済みユーザー
test CHANGED
@@ -1,3 +1,27 @@
1
1
  ここで[解決策](http://stackoverflow.com/questions/3557731/how-to-get-git-to-work-through-a-proxy-and-intellij-idea)が提示されています。
2
2
 
3
3
  intelliJの設定ではなくどうやらgitのglobalの.gitconfigを読んでいるようなので,そちらでconfigurationを試してみてください。
4
+
5
+ 具体的には
6
+
7
+ ```bash
8
+
9
+ git config --global http.proxy ${proxy-ip}:${proxy-port}
10
+
11
+ ```
12
+
13
+ でご自身の${}部分をご自身の環境に合わせて設定してみてください。
14
+
15
+ このコマンドを打たなくても.gitconfigに
16
+
17
+
18
+
19
+ ```bash
20
+
21
+ [http]
22
+
23
+ proxy = ${proxy-ip}:${proxy-port}
24
+
25
+ ```
26
+
27
+ と書いてもいいと思います。