Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a SVN file which is now missing some logic and so I need to go back about 40 revisions to the time when it had the logic I need. Other than trying to view a diff of the file in the command line (very hard to read) is there anyway I could get a copy of that file to review so I can study it to recover parts?

share|improve this question

4 Answers

up vote 53 down vote accepted

You can update to an older revision:

svn update -r 666 file

Or you can just view the file directly:

svn cat -r 666 file | less
share|improve this answer
3  
svn cat -r 666 file | less is perfect so I can read through it with vim! – Xeoncross Nov 18 '10 at 20:06
excellent answer! How have I survived so long without svn cat??!! Between that and tdl I can now uninstall redmine for my own projects :) Perhaps this should be a seperate question, but for bonus points is there something like less I can use with syntax highlighting? – sillyMunky Nov 27 '12 at 1:04
2  
@sillyMunky Try svn cat | vim -. If vim's syntax highlighting doesn't automatically kick in, do :set syntax=java (or whichever language). – John Kugelman Nov 27 '12 at 4:10
Thanks very much John, actually I'm on debian and I found there's a nice little syntax highlighting package called 'source-highlight' so less can automagically pickup syntax highlighting (actually I now alias this to lesss for distinction). – sillyMunky Nov 27 '12 at 16:34

Update to a specific revision:

svn up -r1234 file
share|improve this answer

I believe the best way to view revisions is to use a program/app that makes it easy for you. I like to use trac : http://trac.edgewall.org/wiki/TracSubversion

It provides a great svn browser and makes it really easy to go back through your revisions.

It may be a little overkill to set this up for one specific revision you want to check, but it could be useful if you're going to do this a lot in the future.

share|improve this answer
1  
I would suggest RapidSvn – Strae Jun 18 '12 at 7:53

Using the latest versions of subclipse, u can actually view them without using the cmd prompt. On the file simply right-click => Team => Switch to another branch/tag/revision. Beside the revision field, u click select, and you'll see all the versions of that file.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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