0

Slight oddness going on with svn...

I checked out a repositry with subclipse inside eclipse - the history looks like this: enter image description here

But when I update on the command line, I get this:

pool188-239$svn up
At revision 1908.

Can anyone tell me why the version numbers are different for the same project?

Joe
  • 4,367
  • 7
  • 33
  • 52
  • Run svn log --limit 1 from the command line. You will likely see that r1906 was the last revision where this path was changed. – Mark Phippard Nov 05 '12 at 20:49

1 Answers1

2

Revision 1906 is the revision where your project was last modified.

Revision 1908 is the current revision of Subversion. When you do an update on your project, the revision number returned is the current revision of Subversion.

Gilbert Le Blanc
  • 50,182
  • 6
  • 67
  • 111