2

To get my git repo I need to connect to a proxy with socks5 authentication.

So i create a config file in ~/.ssh and i use netcat to reach the proxy with the parameter ProxyCommand.

When i clone a repo in some terminal everything is fine.

But on Teamcity this doesn't work, it seems that it didn't use the config file.

So i try to use the internal property but there is no way to use socks5 with authentication.

If anyone could help I'd be very grateful.

Thanks.

Etienne Prothon
  • 982
  • 10
  • 30

1 Answers1

1

Proxy which require authentication are not supported at the moment. Please watch/vote for https://youtrack.jetbrains.com/issue/TW-12443.

neverov
  • 1,283
  • 8
  • 11
  • Done. But should i mark your answer as a solution or should i suggest my own solution (by using a script to create local mirror of git repo and then use ssh in this mirror in teamcity) ? – Etienne Prothon Aug 28 '15 at 07:28
  • I dunno.. one can just use proxy without authentication – neverov Aug 28 '15 at 15:46
  • THat might be easier now that git 2.7 officially supports it: http://stackoverflow.com/a/34118102/6309 – VonC Dec 06 '15 at 14:01