How to use git-svn with svn+ssh url

2020-06-28 05:46发布

I like to use in cygwin the git svn clone command with our company svn repository.

The url for this is svn+ssh://svn.<url>.com/repo

under this I can see with e.g. eclipse the repository with trunk/tags/branches

Running git svn clone svn+ssh://svn.<url>.com/repo

No such file or directory: Unable to connect to a repository at URL 'svn+ssh://svn..com/repo': Error in child process: exec of 'ssh' failed: No such file or directory at /usr/lib/git-core/git-svn line 2299

Any one can help me what and how to do this ?

标签: git svn git-svn
2条回答
趁早两清
2楼-- · 2020-06-28 06:07

For git-svn with svn+ssh to work you need to ensure that:

  • You have the ssh client installed on the same machine.
  • You supply the correct username in the URI e.g. svn+ssh://foo@svn.bar.com/project or you arrange for authentication to occur using ssh keys and perhaps an ssh-agent.
查看更多
够拽才男人
3楼-- · 2020-06-28 06:14

The svn+ssh protocol must be setuped using both the private and the public ssh key.

In case of in the Windows usage you have to setup the ssh key before run the svn client using these general steps related to the native Windows svn.exe (should not be a ported one, for example, like the msys or cygwin tools which is not fully native):

  1. Install the putty client.
  2. Generate the key using the puttygen.exe utility and the correct type of the key dependent on the svn hub server (Ed25519, RSA, DSA, etc).
  3. Install the been generated public variant of the key into the svn hub server by reading the steps from the docs to the server.
  4. Create the SVN_SSH environment variable with this content: SVN_SSH="<path-to-plink>/plink.exe" -batch -l "<USERNAME>". This would avoid hangs in scripts because of interactive login/password request and would avoid usage svn repository urls with the user name inside.
  5. Ensure that all svn working copies and the externals properties in them contains valid svn repository urls with the svn+ssh:// prefix. If not then use the svn relocate https:// svn+ssh:// command to switch onto it. Then fix all the rest urls in the externals properties, for example, just by remove the url scheme prefix and leave the // prefix instead.
  6. Run the pageant.exe in the background with the previously generated private key (add it).
  7. Test the connection to the svn hub server through the putty.exe client. The client should not ask for the password if the pageant.exe is up and running with has been correctly setuped private key. The client should not ask for the user name either if the SVN_SSH environment variable is declared with the user name.

The git client basically is a part of ported msys or cygwin tools, which means they behaves a kind of differently.

The one of the issues with the message Can't create session: Unable to connect to a repository at URL 'svn+ssh://...': Error in child process: exec of '' failed: No such file or directory at .../Git/mingw64/share/perl5/Git/SVN.pm line 310. is the issue with the SVN_SSH environment variable. The variable should be defined with an utility from the same tools just like the git itself. The attempt to use it with the standalone plink.exe from the putty application would end with that message.

So, additionally to the steps for the svn.exe application you should apply, for example, these steps:

  1. Drop the usage of the SVN_SSH environment variable and remove it.
  2. Run the ssh-pageant from the msys or cygwin tools (the putty's pageant must be already run with the valid private key). You can read about it, for example, from here: https://github.com/cuviper/ssh-pageant
ssh-pageant is a tiny tool for Windows that allows you to use SSH keys from PuTTY's Pageant in Cygwin and MSYS shell environments.
  1. Create the environment variable returned by the ssh-pageant from the stdout, for example: SSH_AUTH_SOCK=/tmp/ssh-hNnaPz/agent.2024.
  2. Use urls in the git svn ... commands together with the user name as stated in the documentation (https://git-scm.com/docs/git-svn#Documentation/git-svn.txt---usernameltusergt ): svn+ssh://<USERNAME>@svn.<url>.com/repo
--username=<user> For transports that SVN handles authentication for (http, https, and plain svn), specify the username. For other transports (e.g. svn+ssh://), you must include the username in the URL, e.g. svn+ssh://foo@svn.bar.com/project

These instructions should help to use git svn commands together with the svn commands.

查看更多
登录 后发表回答