Git svn clone: ​​<file> not found in commit <sha>

I am trying to git svn clone SSH.NET repository from Codeplex. My team:

 git svn clone https://sshnet.svn.codeplex.com/svn/ 

But he always stops with an error message. This is my first time got an error during git svn clone , I don't know how this SVN repository is special.

I tried to answer Google, but nothing I found worked for me. I read:

This is where the error message appears:

 r9445 = e8eb2162b4e5cc6b5b5129f0739c4f60cc42a58a (refs/remotes/git-svn) M Renci.SshClient/Renci.SshNet/Sftp/SftpFileStream.cs M Renci.SshClient/Renci.SshNet/Sftp/SftpFile.cs M Renci.SshClient/Renci.SshNet/SshCommand.cs M Renci.SshClient/Renci.SshNet/Shell.cs M Renci.SshClient/Renci.SshNet/SftpClient.cs M Renci.SshClient/Renci.SshNet/PrivateKeyFile.cs M Renci.SshClient/Renci.SshNet/ConnectionInfo.cs r9486 = 91aea22d35ad41f70fa583d262438cf00a0a117d (refs/remotes/git-svn) M Renci.SshClient/Renci.SshNet/Security/Cryptography/Ciphers/RsaCi pher.cs A Renci.SshClient/Renci.SshNet/Security/Cryptography/RsaKey.cs Renci.SshClient/Renci.SshNet/Security/Cryptography/RsaDigitalSignature.cs was no t found in commit 91aea22d35ad41f70fa583d262438cf00a0a117d (r9486) 
+5
source share
1 answer
 $ git svn fetch --ignore-path hoge 

hoge is the path to the file with the error. (Renci.SshClient / Renci.SshNet / Security / Cryptography / RsaDigitalSignature.cs)

0
source

All Articles