Linux git svn忽略http代理(debian)

Linux git svn忽略http代理(debian),linux,proxy,git-svn,Linux,Proxy,Git Svn,在搜索如何将git与代理一起使用时,我发现了两种解决方案: http_代理环境变量 git config http.proxy 自导出http\U代理以来=http://proxy.fqdn:8080使wget工作,但没有git svn,我另外尝试了第二个选项:git config--global http.proxy。但是没有成功。Wireshark仍然告诉我git svn直接联系远程存储库。唉: git svn clone -s http://svn.wp-plugins.org/yak

在搜索如何将git与代理一起使用时,我发现了两种解决方案:

  • http_代理环境变量
  • git config http.proxy
自导出http\U代理以来=http://proxy.fqdn:8080使
wget
工作,但没有
git svn
,我另外尝试了第二个选项:
git config--global http.proxy
。但是没有成功。Wireshark仍然告诉我git svn直接联系远程存储库。唉:

git svn clone -s http://svn.wp-plugins.org/yak-for-wordpress ZM-Schicht Anforderung gescheitert: OPTIONS von »http://svn.wp-plugins.org/yak-for-wordpress«: Konnte keine Verbindung zum Server herstellen (http://svn.wp-plugins.org) at /usr/lib/git-core/git-svn line 1916 git-svn克隆-shttp://svn.wp-plugins.org/yak-for-wordpress ZM Schicht Anforderung gescheitert:选项http://svn.wp-plugins.org/yak-for-wordpress«:Konnte keine Verbindung zum服务器herstellen(http://svn.wp-plugins.org)at/usr/lib/git-core/git-svn行1916
我是否遗漏了什么,或者这是git svn中的一个bug?是否有人尝试通过代理成功克隆svn回购?

确保您不必指定用户名和密码(除了代理地址之外)

还要考虑将相同的信息(<代码> http.Servs<代码>)添加到Svn本身(如In):

$HOME/.subversion/servers
中的
[global]
部分添加代理信息修复了该问题


非常感谢。为SVN本身设置代理实现了这一目的。我想我会对git svn手册页提出请求。