svn co
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 只能check目录, 不能co文件; 如果需要co文件, 需要用 svn export;