Heim > Fragen und Antworten > Hauptteil
最近从 Bitbucket经常访问不了,Github拖代码的速度也抽风,什么原因大家都知道。
所以,最好的方法就是给Git设置代理了,我希望能指定部分仓库走代理方式,不知该如何设置?
本地环境下,本人设置了ssh代理,通过SOCKS走127.0.0.1:7070实现,如果在本地ssh代理开启的情况下,是不是又有另外的方法?
滿天的星座2017-05-02 09:35:57
Git 目前支持的三种协议 git://
、ssh://
和 http://
,其代理配置各不相同:core.gitproxy
用于 git://
协议,http.proxy
用于 http://
协议,ssh://
协议的代理需要配置 ssh 的 ProxyCommand
参数。
建立 /path/to/socks5proxywrapper
文件,使用 https://bitbucket.org/gotoh/connect 工具进行代理的转换,各发行版一般打包为 proxy-connect 或者 connect-proxy。
#!/bin/sh
connect -S 127.0.0.1:7070 "$@"
配置 git
[core]
gitproxy = /path/to/socks5proxywrapper
或者
export GIT_PROXY_COMMAND="/path/to/socks5proxywrapper"
建立 /path/to/soks5proxyssh
文件
#!/bin/sh
ssh -o ProxyCommand="/path/to/socks5proxywrapper %h %p" "$@"
配置 git 使用该 wrapper
export GIT_SSH="/path/to/socks5proxyssh“
当然也可以直接配置 ~/.ssh/config
的 ProxyCommand
[http]
#这里是因为 Git 使用 libcurl 提供 http 支持
proxy = socks5://127.0.0.1:7070
/path/to/socks5proxywrapper
文件改为#!/bin/sh
connect -H 192.168.1.100:8080 "$@"
[http]
proxy = http://192.168.1.100:8080
gitproxy 参数提供 * for *
结构,具体看 man git-config
的 core.gitproxy 部分。
高洛峰2017-05-02 09:35:57
可以为该仓库设置 http.proxy 或者 core.gitproxy
git config http.proxy http://user:pwd@server.com:port
git config core.gitproxy '"proxy-command" for example.com'
http://www.kernel.org/pub/software/sc...
过去多啦不再A梦2017-05-02 09:35:57
给git设置代理可以用yanyaoer的方法。
至于你说的ssh+pac+socks的代理,是跟yanyaoer说的git代理不冲突的。
socks代理是一个电路级的底层代理,而git config中设置的代理是应用级的。
举个例子,你的pac里设置了 github.com 走 socks 127.0.0.1:7070 ;而git config里有为github.com设置了走 proxy.server.com 的代理。
那么这个时候,你进行git操作,所有的网络请求走到socks那一层的时候,已经是proxy.server.com了,自然就不受影响,会直接出去。
習慣沉默2017-05-02 09:35:57
tsocks - http://tsocks.sourceforge.net/
$ tsocks git clone git@github.com:xxx/xxx.git
淡淡烟草味2017-05-02 09:35:57
从bitbucket克隆用ssh协议的话可以用所有ssh的代理使用方式
比如如果是http代理或socks代理,可以使用 http://bent.latency.net/bent/git/goto... 这个小程序做主机的ProxyCommand
如果是你说的有某个中转服务器的话,可以用远程主机上的nc
做ProxyCommand
http://www.undeadly.org/cgi?action=ar...
关于你说的区分流量,可以在~/.ssh/config
里进行区别设置。例如我之前用的配置
Host bitbucket.org ProxyCommand ~/.ssh/connect -H 192.168.1.106:3128 %h 22
这样git clone ssh://git@bitbucket.org/XXXX
时会自动调用这里定义的ProxyCommand
phpcn_u15822017-05-02 09:35:57
配置一个 proxy-wrapper
脚本
bash cat > $HOME/bin/proxy-wrapper #!/bin/bash nc -x127.0.0.1:7080 -X5 $*
给它增加一个可执行权限
bash $ chmod +x $HOME/bin/proxy-wrapper
配置 .ssh/config
, 对 github.com 设置一个代理命令
bash Host github github.com Hostname github.com User git ProxyCommand $HOME/bin/proxy-wrapper '%h %p'
必须全部走ssh协议
bash $ git clone git@github.com:jjrdn/node-open.git
git 协议请参考 [Using GIT through a SOCKS proxy](http://twopenguins.org/tips/git-throu...).
滿天的星座2017-05-02 09:35:57
根据1L的答案写了一个smart_switcher,可以自动判别并设置各种代理,基于http代理配置,特别适合office有代理、家里无代理各种切换的情况,不过简化到超简单,只需设置你的网关IP和Port即可。
ReadMe在此。。。
A auto-detect proxy switcher fot http, https, ftp, rsync, ssh, git protocols.
A smart proxy switcher wrapper, supports http, https, ftp, rsync, ssh(connect depanded), git(connect depanded) protocols. It can automatically detect your network environment and set proxy for you.
If you usually switch the network environment (maybe home with no-proxy and workplace with proxy), it may help you a lot.
Tested in zsh and bash.
Simply source it in your .zshrc, or any shell script resource file like this:
source /path/to/smart_switcher.sh
and, make sure set your proxy_server/gateway in smart_switcher.sh
.
Normally, it antomatically executes when you login in.
smart_switcher
supports cecho, who will bring some colors for you.
connect is required if proxy is supported in ssh and git. You can install it easily in path /usr/bin/connect
.
怪我咯2017-05-02 09:35:57
git协议连接方式使用的是ssh同服务器通讯,设置ssh走sock5代理连接服务器的同时也解决了git的代理问题。
1.
https://raw.githubusercontent.com/bronzeee/ssh_connect/master/connect.c
将上述代码使用gcc编译并保存在环境变量目录中同时改名connect
进入.ssh目录新建
文件config
Host *
User git
ProxyCommand $HOME/.ssh/proxy-wrapper '%h %p'
文件 proxy-wrapper
#!/bin/bash
~/connect.exe -S http://IP:PORT $@
天蓬老师2017-05-02 09:35:57
上面有不少答案了。假设用程序在无状态、无工作目录的情况下运行git指令,利用-c
参数可以在运行时重载git配置,包括关键的http.proxy
例如:
git clone -c http.proxy=http://192.168.117.131:8888 http://github.com/me/test1.git
高洛峰2017-05-02 09:35:57
最优方案是proxychains(https://github.com/haad/proxychains)。
下面命令运行程序program
$ proxychains program
它强制给定程序发起的TCP连接通过事先配置的代理。至少在Linux上,它比“SOCKS代理转为HTTP代理”用途更广泛。两者互为补充,可以涵盖所有需要代理的情景。
以Git为例,没有proxychains的话,就必须为每个协议(http, git, ssh)按照git文档的要求分别设置代理,过程复杂且不稳定。有了proxychains,这些都可以忘掉了!
$ sudo apt-get install proxychains
打开/etc/proxychains.conf,注释掉下面这行(disable远程DNS解析。有DNS污染风险。下文讲如何解决enable不work的问题。)
proxy_dns
最后添加如下行:
socks5 134.64.206.85 1081
$ proxychains git clone git://github.com/yuzhichang/cppdep
$ sudo proxychains apt-get update
这里134.64.206.85:1081是SOCKS代理位置。