On Fri, Feb 10, 2012 at 8:31 PM, Chad innocentkiller@gmail.com wrote:
[1] ssh://<user>@gerrit.wikimedia.org/test/mediawiki/core2.git
I think this one is actually on port 29418.
This will work: ssh://<user>@gerrit.wikimedia.org:29418/test/mediawiki/core2.git
Or, add the following to ~/.ssh/config (the "User" line is only necessary if different from your local username) Host gerrit.wikimedia.org User <user> Port 29418
and then this will work: git clone gerrit.wikimedia.org:test/mediawiki/core2.git
~Rusty