0

我想安装 CodeCollaborator 的工具来管理我开发中的代码,但是有一个安装错误我无法处理。

  1. 我相信 CodeCollaborator 客户端安装成功。
  2. 当我单击 CodeCollaborate 客户端中的添加按钮时,然后添加 CSM 配置成功。
  3. When chose the SCM Cofigration to Add Changes,it always show error as below:

    初始化更改的文件时出错

原因:svn:E155036:请看 'svn upgarade' 命令

svn:E155036: 工作副本 'E:\woekplace\chunya' 太旧(格式 10,由 Subversion 1.6 创建)

我认为错误是我的eclipse中的Slik-Subversion-1.7.8-x64Subersion之间的版本导致的,但是无论我如何相互升级版本,错误一直存在。如何解决这个问题?

4

1 回答 1

1

svn help upgrade在 Windows 命令提示符(或Linux 终端)中键入会svn --help upgrade显示:

upgrade: Upgrade the metadata storage format for a working copy.
usage: upgrade [WCPATH...]

Local modifications are preserved.

Valid options:
  -q [--quiet]             : print nothing, or only summary information

Global options:
  --username ARG           : specify a username ARG
  --password ARG           : specify a password ARG
  --no-auth-cache          : do not cache authentication tokens
  --non-interactive        : do no interactive prompting
  --trust-server-cert      : accept SSL server certificates from unknown
                             certificate authorities without prompting (but only
                             with '--non-interactive')
  --config-dir ARG         : read user configuration files from directory ARG
  --config-option ARG      : set user configuration option in the format:
                                 FILE:SECTION:OPTION=[VALUE]
                             For example:
                                 servers:global:http-library=serf

所以它告诉您需要升级本地工作副本的元数据,而不是升级 SVN 本身。您也可以从命令提示符或终端窗口执行此操作,使用usage上面示例中显示的语法。

于 2013-01-31T01:56:17.660 回答