分类: LINUX
2011-04-09 20:11:07
svn import — 递归提交一个路径的拷贝到版本库。
Recursively commit a copy of PATH to URL. If PATH is omitted, “.” is assumed. Parent directories are created in the repository as necessary. Unversionable items such as device files and pipes are ignored even if --force is specified.
无
版本库
是
这将本地目录myproj导入到版本库的trunk/misc,trunk/misc在导入之前不需要存在—svn import会递归的为你创建目录。
$ svn import -m "New import" myproj需要知道这样不会在版本库创建目录myproj,如果你希望这样,请在URL后添加myproj:
$ svn import -m "New import" myproj /myproj在导入数据之后,你会发现原先的目录树并没有纳入版本控制,为了开始工作,你还是要运行svn checkout得到一个干净的目录树工作拷贝。