Ja:Accessing PRADO SVN
From PRADO Wiki
This article is a draft under early authorship and is rapidly changing. Please consider suggesting your changes on the discussion page.
PRADOのSVNリポジトリにアクセスする際には、お好みのSVNクライアントをお使いください。あなたがWindowsをお使いならSVNTortoiseが扱いやすくドキュメントも整っていますのでおすすめです。Linuxの場合は、ディストリビューションに適したsvnツールをインストールしてください。
- in Debian: #apt-get install svn
- in Ubuntu: $sudo apt-get install svn
Once you got the software just follow the commands stated. This is quoted from the downloads page:
'We have three top-level folders in our repository. The trunk folder is our main development line of PRADO; the branches folder contains release branches (e.g. 3.0 branch) and feature branches; and the tags folder stores all released code.
The following *nix commands can all be used to fetch PRADO code from the repository:
1.) Check out a snapshot from trunk
svn checkout http://svn.pradosoft.com/repos/prado/trunk
2.) Download from trunk without revision information
svn export http://svn.pradosoft.com/repos/prado/trunk
3.) Check out a snapshot of revision 913 from the 3.0 branch
svn checkout -r913 http://svn.pradosoft.com/repos/prado/branches/3.0

