Subversion gives the checkout command to check out a running copy from a repository. Below command will create a brand new directory within the present day working directory with the call project_repo. Don't hassle approximately the repository URL, as most of the time, it is already provided through the subversion administrator with appropriate get right of entry to.
[tom@CentOS ~]$ svn checkout http://svn.server.com/svn/project_repo --username=tom
The above command will produce the subsequent result.
A project_repo/trunk
A project_repo/branches
A project_repo/tags
Checked out revision 1.
After each successful checkout operation, the revision wide variety gets published. If you need to view more facts approximately the repository, then execute the info command.
[tom@CentOS trunk]$ pwd
/home/tom/project_repo/trunk
[tom@CentOS trunk]$ svn info
The above command will produce the following result.
Path: .
URL: http://svn.server.com/svn/project_repo/trunk
Repository Root: http://svn.server.com/svn/project_repo
Repository UUID: 7ceef8cb-3799-40dd-a067-c216ec2e5247
Revision: 1
Node Kind: directory
Schedule: normal
Last Changed Author: jerry
Last Changed Rev: 0
Last Changed Date: 2013-08-24 18:15:52 +0530 (Sat, 24 Aug 2013)
[tom@CentOS trunk]$