GitHub for Windows設定HTTPエージェント

1078 ワード

Github for windowsはGUIとshellバージョンを提供しています.
デフォルトではhttpプロトコルが使用されます.次を参照してください.https://help.github.com/articles/do-i-need-ssh-keys-to-use-github-for-windows
会社httpはgithubサーバに接続するにはエージェントを設定する必要があります.ただしGUIバージョンではHTTPエージェントが設定されていないため、以下の2つの方法が提供される.
1.グローバルプロファイルを直接変更するには:
win 7パス:C:UsersAdministrator.gitconfig 
開いたらhttp段落を追加:
[user]
	name =   
	email = [email protected]
[http]
	proxy = proxy.XX.com:8080

2.コマンドラインの下で変更

git shellを選択します.デフォルトのアクセスパスは、GUIの下に設定されているTools/Options/default storage directoryオプションのパスです.

コマンドを入力:
E:\GitHub> git config --global http.proxy http://proxy.XX.com:8080
でhttpエージェントを問い合せます.
E:\GitHub> git config --get http.proxy
proxy.XX.com:8080
コマンドが最終的に変更したのもgitconfigファイルです.