svn添加新的目录

方法一:

1.在远程服务器上生成新的目录

svn mkdir http://svn.xxx.com/svn/mobile/strategy/assistant/branches/talk -m "talking system"

svn co http://svn.corp.qunar.com/svn/mobile/strategy/assistant/branches/talk talk

2.将需要添加的目录下的文件拷贝到talk目录下

cp -r talk-master/* talk

3.添加到本地svn库中

svn add *

4.提交到远程库中

svn ci -m "version 1"

5.查看状态

svn st


方法二:

1.svn import -m "New import" talkhttp://svn.xxx.com/svn/mobile/strategy/assistant/branches/talk

2.svn checkout