2.2)
  ### Uncomment the line below to use the default password file.
  # password-db = passwd
  ### The authz-db option controls the location of the authorization
  改为
  ### Uncomment the line below to use the default password file.
  password-db = passwd
  ### The authz-db option controls the location of the authorization
  2.3)
  ### Uncomment the line below to use the default authorization file.
  # authz-db = authz
  ### This option specifies the authentication realm of the repository.
  修改为
  ### Uncomment the line below to use the default authorization file.
  authz-db = authz
  ### This option specifies the authentication realm of the repository.
  对于一般的情况,修改到这里可以了,下面的选项是加密选项等的加强版,这里不说了。
  3)下面修改passwd文件。
  # vim passwd
  3.1)找到“[users]”,在此选项下添加用户“woshihehe”,“woshihehe”用户对应的密码是“123456”
  [users]
  # harry = harryssecret
  # sally = sallyssecret
  woshihehe = 123456
  4)修改authz文件
  # vim authz
  在后添加两行
  # [repository:/baz/fuz]
  # @harry_and_sally = rw
  # * = r
  [/]
  woshihehe=rw
  这两行的意思是,目录[/](代码根目录)下的所有文件,如果没有特殊约定的话,woshihehe用户将具有读(r)和写(w)的权限。
  3、下载代码
  假如我的svn服务器的IP是192.168.1.105,在其它的机器上,执行如下代码
  # svn co svn://192.168.1.105:/firsttest --username woshihehe
  认证领域: <svn://192.168.1.105:3690> My First Repository
  “woshihehe”的密码:
  那么接下来输入密码可以了
  -----------------------------------------------------------------------
  注意!  你的密码,对于认证域:
  <svn://192.168.1.105:3690> My First Repository
  只能明文保存在磁盘上!  如果可能的话,请考虑配置你的系统,让 Subversion
  可以保存加密后的密码。请参阅文档以获得详细信息。
  你可以通过在“/root/.subversion/servers”中设置选项“store-plaintext-passwords”为“yes”或“no”,
  来避免再次出现此警告。
  -----------------------------------------------------------------------
  保存未加密的密码(yes/no)?yes
  取出版本 0。
  填写yes,这样我们取出了我们的代码,版本是0。这时候可以在里面添加目录和文件了。不过这个是如何使用svn了,这里细说了。