本手册是为描述 Subversion 1.4 而编写的。如果您正在运行更新版本的 Subversion,我们强烈建议您访问 https://svnbook.subversion.org.cn/ 并参考适合您 Subversion 版本的书籍版本。
在继续阅读之前,以下是您使用 Subversion 时最重要的命令:svn help。Subversion 命令行客户端是自文档化的——在任何时候,快速输入 svn help SUBCOMMAND 将会描述子命令的语法、选项和行为。
$ svn help import import: Commit an unversioned file or tree into the repository. usage: import [PATH] URL Recursively commit a copy of PATH to URL. If PATH is omitted '.' is assumed. Parent directories are created as necessary in the repository. If PATH is a directory, the contents of the directory are added directly under URL. Valid options: -q [--quiet] : print as little as possible -N [--non-recursive] : operate on single directory only …