svn co

http://blog.163.com/wb_zhaoyuwei/blog/static/183075439201301535012961/


首先需要知道一点,  svn co  只能check  目录, 不能co文件; 如果需要co文件, 需要用 svn export;
svn  co  的用法经常有两种:   
第一种:  直接  svn  co    http://svnserver/mypro/trunk
                此时, 会在你的当前目录下, 增加一个 trunk文件夹;  svn的trunk文件的内容, 在trunk文件夹中。
第二种:  svn  co    http://svnserver/mypro/trunk   code
               此时, 会在你的当前目录下, 增加一个 code的文件夹,  svn的trunk的文件的内容, 在code中。

你可能感兴趣的:(svn co)