Search code examples
svnversion-controltortoisesvngoogle-code

Check out every revision with Subversion?


Is there a simple way to check out every revision in Subversion? Currently, if I wanted to do this, I would have to check out each revision individually.

To answer the inevitable "why do you need this?", I'm going to be working with an offline computer and want to be able to test old code states without connecting to the internet. I may not need to go back all the way, but I'd still like to have all revisions in case I do.


Solution

  • I will strongly recommend you to make use of GIT.

    By making use of git-svn, you will be able to clone the svn repository, get every revision and make a corresponding GIT repository.

    With the GIT repo containing all version, you can do whatever you want in that offline computer.