Checkout a specific revision of a folder in Subversion using the command line
mkdir my_project cd my_project svn checkout -r1 file://$HOME/.svnrepos/myproject/trunk ./ This will checkout to revision 1. Omit the -r1 flag to checkout the latest revision.