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
2010-08-18 05:33:49
Thanks, I'll have to do that, but I'm also interested how to do this from the comman line.
juur
2010-08-18 05:34:42
Some documentation for the log command: http://chestofbooks.com/computers/revision-control/subversion-svn/svn-Log-Ref-svn-C-Log.html
Dimitar
2010-08-18 05:41:22
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
2010-08-18 05:43:54