Tequila
Tequila

Reputation: 864

Eclipse SVN Assistance to SourceForge

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

Answers (2)

Tequila
Tequila

Reputation: 864

Had to do two things:

  1. Download Eclipse SVN software: http://www.eclipse.org/subversive/downloads.php

  2. Install the latest version of SubEclipse. http://subclipse.tigris.org/servlets/ProjectProcess?pageID=p4wYuA

  3. Setup the software with SVN Kit. http://www.ranjankumar.in/working-with-svn-repository-in-eclipse/

  4. Choose the second SVN selection in Eclipse. The tunnel error does not exist after the default is set to SVNKit.

Upvotes: 1

plasma147
plasma147

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

Related Questions