I have root access to a server hosting a SVN respository (via SSH).

I need to do some heavy log crunching, basically I have to fetch the revision of each diff using:

svn diff -c ARG

where ARG is the revision number. I have to fetch this information for all the revisions, which takes time if I query the server remotely.

So my question is: as I can SSH into the server, is there anyway I can fetch the logs locally rather than fetching them remotely?

link|improve this question
+1 for well formatted first question – Bruce Jul 18 '11 at 5:46
Why do you need to do such a thing? – khmarbaise Jul 18 '11 at 6:14
feedback

3 Answers

up vote 2 down vote accepted

If you get access to the server, you can use svn in file system mode, to query locally, using file:// url. You can check relevant manual page for more information

link|improve this answer
Let me try this out. – S Singh Jul 18 '11 at 5:47
Your answer worked perfectly, thanks. – S Singh Jul 18 '11 at 6:03
feedback

Yes. You can checkout the repository right on the server and perform any operations you need.

When you'll check it out - specify local path with path:/// prefix

link|improve this answer
But I can already navigate to the SVN folder and I see: logs, db, hooks and all such folders. Can't anything be done there? Assuming I do checkout the repository on the server, does svn diff take local path? – S Singh Jul 18 '11 at 5:46
Your answer worked perfectly, thanks. But I am going to accept Bruce's answer since has less reputation :-) – S Singh Jul 18 '11 at 6:04
@S Singh: ok, let +1 him then ;-) – zerkms Jul 18 '11 at 6:15
Cheers for sportsmanship on the answer acceptance :-) – Bruce Jul 19 '11 at 6:33
feedback

You may use always a url e.g:

svn diff <url> -rREV:REV

if you need to use ssh you may add the svn+ssh protocol.

svn diff svn+ssh://my-username@my-server/my-home/my-repo -rREV:REV

Edit: You do not need to checkout the repository

Another thing would be according to your comment. If you want to have an operation which only uses local logs you may use a distributed version control system like git. Git e.g. supports direct access to remote svn repositories. Then everything will be mirrored.

link|improve this answer
But how does this make it a local operation? – S Singh Jul 18 '11 at 5:51
It is a central source code repository so it will always be some sort of remote transmission involved. – fyr Jul 18 '11 at 5:54
Thanks for your answer. – S Singh Jul 18 '11 at 6:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.