svn add — 添加文件、目录或符号链。
--targets FILENAME --quiet (-q) --config-dir DIR --no-ignore --auto-props --no-auto-props --force --depth ARG --parents
添加一个文件到工作拷贝:
$ svn add foo.c A foo.c
当添加一个目录,svn add缺省的行为方式是递归的:
$ svn add testdir A testdir A testdir/a A testdir/b A testdir/c A testdir/d
你可以只添加一个目录而不包括其内容:
$ svn add --depth=empty otherdir A otherdir
通常情况下,命令svn add *会忽略所有已经在版本控制之下的目录,有时候,你会希望添加所有工作拷贝的未版本化文件,包括那些隐藏在深处的文件,可以使用svn add的--force
递归到版本化的目录下:
$ svn add * --force A foo.c A somedir/bar.c A otherdir/docs/baz.doc …