tags:

views:

34

answers:

3

I'm noob in Subversion, how can I find my old revisions of the project in the repository?

A: 

You should try something like tortoise svn: http://tortoisesvn.tigris.org/

This gives a nice UI for using svn, rather than the command line. Which should make it easier to find old revisions of your files in source control.

EDIT: To do this from the command line i believe

svn log

is the command you are looking for.

Dimitar
Thanks, I'll have to do that, but I'm also interested how to do this from the comman line.
juur
Some documentation for the log command: http://chestofbooks.com/computers/revision-control/subversion-svn/svn-Log-Ref-svn-C-Log.html
Dimitar
A: 

for svn commands you can check out svn command line tutorial

N30
Many thanks!!!!
juur
A: 

Use svn checkout with a revision parameter, like so:

svn checkout -r 6

Also, the SVN book is a great resource for learning svn.

Nathan Tomkins