Linux 项目管理软件(svn & git……)代理设置

来源:互联网 发布:无证程序员 小品 编辑:程序博客网 时间:2024/05/22 01:46

Proxy Settings


HTTP/FTP

HTTP and FTP transports can be configured with the environment variables:

$ export http_proxy=proxyhost:port
$ export ftp_proxy=proxyhost:port

Some internal hosts don't need to go through the proxy:

$ export no_proxy=host1,host2

Subversion

Subversion/svn proxy is configured in ~/.subversion/servers file:

[global]
http-proxy-host = proxyhost
http-proxy-port = port

git

git needs a helper application/script to work through the proxy. One needs to create such script, following this example:

#!/bin/sh
PROXYHOST=proxyhost
PROXYPORT=port
(echo "CONNECT $1:$2 HTTP/1.0"; echo; cat ) | /usr/bin/nc $PROXYHOST $PROXYPORT | (read a; read a; cat )

In order for git to use the above script, GIT_PROXY_COMMAND environment variable needs to point to it:

$ export GIT_PROXY_COMMAND=/path/to/git-proxy.sh

原创粉丝点击