SVN 检出操作
SVN 检出操作
上一章中,我们创建了版本库 axihe01,URL 为 svn://192.168.0.1/axihe01,svn 用户 user01 有读写权限。
我们就可以通过这个 URL 在客户端对版本库进行检出操作。
svn checkout http://svn.server.com/svn/project_repo –username=user01 以上命令将产生如下结果:
root@axihe:~/svn# svn checkout svn://192.168.0.1/axihe01 --username=user01
A axihe01/trunk
A axihe01/branches
A axihe01/tags
Checked out revision 1.
检出成功后在当前目录下生成 axihe01 副本目录。查看检出的内容
root@axihe:~/svn# ll axihe01/
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 4 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/
你想查看更多关于版本库的信息,执行 info 命令。