Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Subversive error: "<file>... non-existent in that revision"

I have started to set up a new SVN repo on AWS, and am having trouble working with it from Eclipse 3.6 Subversive 2.2.2.

Update: The new repo is using the Bitnami stack with Subversion 1.7.

I have no problems with my Eclipse 3.5 Subclipse 1.6.2 install.

In Eclipse 3.6 Subversive 2.2.2, if I try to open any subfolders, Subversive gives me the error:

Get repository folder children operation failed.

svn: URL 'svn://xxx-xxx-xxx-xxx-xx.compute-1.amazonaws.com/M1' non-existent in that revision

Any attempt to read the files gives me a similar error (xxx non-existent in that revision).

It seems like the meta-data about each commit is available, but the actual files themselves cannot be found/read.


Updates:

  • I can view the history of all commits with Subversive, but can't view the actual files.
  • The repo works perfectly with other SVN clients, like Subclipse, X-Code's client, SVNX.
  • the issue lies with the lack of SVN 1.7 support for Subversive at the moment (Feb 2012)

Answer (explained):

ScubaZA pointed me in the right direction - the new repo was using Subversion 1.7, which is not supported by Subversive (as of Feb 2012). Subversive uses the SVNKit connectors. The other SVN clients already had support for 1.7.

Info in these related questions helped:

  • Subclipse in Mac OS Lion shows "Unable to load default SVN client" error
  • SVN / Subversion 1.7 and Eclipse Subversive & JavaHL
like image 220
Richard Le Mesurier Avatar asked Feb 13 '12 15:02

Richard Le Mesurier


1 Answers

Perhaps check that your eclipse SVN connector is compatible with the SVN version installed on your server.

To check Using eclipse:

Preferences -> Team -> SVN -> SVN Connector tab

It should say something like 'SVNKit 1.x.x (SVN 1.x.x compatible)'

As far as I know the Subversive plugin does not support SVN 1.7 as yet.

like image 149
Stephen Asherson Avatar answered Dec 02 '22 12:12

Stephen Asherson