YouTip LogoYouTip

Svn Check Out

# SVN Checkout Operation * * * In the previous chapter, we created the repository `tutorial01` with the URL `svn://192.168.0.1/tutorial01`, and the SVN user `user01` has read/write permissions. We can now perform a checkout operation on the repository from the client using this URL. ```bash svn checkout http://svn.server.com/svn/project_repo --username=user01 The above command will produce the following result: ```bash root@:~/svn# svn checkout svn://192.168.0.1/tutorial01 --username=user01 A tutorial01/trunk A tutorial01/branches A tutorial01/tags Checked out revision 1. After a successful checkout, a copy directory of `tutorial01` is generated in the current directory. To view the checked-out contents: ```bash root@:~/svn# ll tutorial01/ total 24 drwxr-xr-x 6 root root 4096 Jul 21 19:19 ./ drwxr-xr-x 3 root root 4096 Jul 21 19:10 ../ drwxr-xr-x 2 root root 4096 Jul 21 19:19 branches/ drwxr-xr-x 6 root root 4096 Jul 21 19:19 .svn/ drwxr-xr-x 2 root root 4096 Jul 21 19:19 tags/ drwxr-xr-x 2 root root 4096 Jul 21 19:19 trunk/ If you want to view more information about the repository, execute the `info` command.
← Misc ContainsSvn Install β†’