菜鸟笔记
提升您的技术认知

svn 检出操作-ag真人游戏

阅读 : 752

上一章中,我们创建了版本库coonote01,url为svn://192.168.0.1/coonote01,svn用户user01有读写权限。

我们就可以通过这个url在客户端对版本库进行检出操作。

svn checkout http://svn.server.com/svn/project_repo --username=user01 以上命令将产生如下结果:

root@coonote:~/svn# svn checkout svn://192.168.0.1/coonote01 --username=user01
a    coonote01/trunk
a    coonote01/branches
a    coonote01/tags
checked out revision 1.

检出成功后在当前目录下生成coonote01副本目录。查看检出的内容

root@coonote:~/svn# ll coonote01/
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 命令。

网站地图