巡航控制错误-同名的未版本控制文件已经存在



巡航控制系统无法编译*。SLN(或*.vbproj)文件因为下面的错误。有人见过这个错误吗?

错误:
同名的未版本文件已经存在

巡航控制台错误:

ThoughtWorks.CruiseControl.Core.CruiseControlException: Source control operation failed: svn: Failed to add file '\dev-web-02weblimsdevdocsUI.Webweb.config': an unversioned file of the same name already exists
. Process command: svn update \dev-web-02weblimsdevdocs --username ccserver --password ccserver --non-interactive --no-auth-cache
   at ThoughtWorks.CruiseControl.Core.Sourcecontrol.ProcessSourceControl.Execute(ProcessInfo processInfo)
   at ThoughtWorks.CruiseControl.Core.Sourcecontrol.Svn.UpdateSource(IIntegrationResult result)
   at ThoughtWorks.CruiseControl.Core.IntegrationRunner.Build(IIntegrationResult result)
   at ThoughtWorks.CruiseControl.Core.IntegrationRunner.Integrate(IntegrationRequest request)

是的,这可能是因为有人从subversion中删除了文件,然后重新添加了它,或者这个文件是在CC服务器上自动生成(或手动添加)的,现在已经添加到版本控制中。SVN正在尝试创建该文件,因为它已被添加到subversion中,但由于该文件已经存在,因此出现错误。

要修复它,只需删除\dev-web-02weblimsdevdocsUI.Webweb.config处的文件。下次svn更新将从存储库获取最新版本。

相关内容

  • 没有找到相关文章

最新更新