Reputation: 864
I cannot seem to get a project in Eclipse uploaded to SourceForge. Basically I am going to Team -> Share Project -> SVN and it comes back with an error. I am unsure what to do next as I have tired to figure out where the config files are, but no avail. I also turned off the Windows (7) firewall. It's Eclipse Indigo SR2.
mkdir --parents -m "Initial import." [svn+ssh://[email protected]/p/novaturtles2/code/trunk/GoogleJavaForm]
The system cannot find the file specified.
svn: Unable to connect to a repository at URL 'svn+ssh://[email protected]/p/novaturtles2/code/trunk/GoogleJavaForm'
svn: Can't create tunnel: The system cannot find the file specified.
Upvotes: 0
Views: 3041
Reputation: 864
Had to do two things:
Download Eclipse SVN software: http://www.eclipse.org/subversive/downloads.php
Install the latest version of SubEclipse. http://subclipse.tigris.org/servlets/ProjectProcess?pageID=p4wYuA
Setup the software with SVN Kit. http://www.ranjankumar.in/working-with-svn-repository-in-eclipse/
Choose the second SVN selection in Eclipse. The tunnel error does not exist after the default is set to SVNKit.
Upvotes: 1
Reputation: 2211
Are you connecting using svn+ssh?
This blog post says they solved a similar problem through this:
SVN_SSH Environment Variable value was like this[Won't Work]:
C:\Program Files\Putty\bin\plink.exe
It should be like this [Will work]:
C:\\Program Files\\Putty\\bin\\plink.exe
OR
C:/Program Files/Putty/bin/plink.exe
Upvotes: 1