svn 配置 常见错误及解决方法

标签:
杂谈 |
Windows 示例:
Linux/Mac 示例:
http://www-static.stor.sinaapp.com/attachement/22/23e891a75fe09fdb072be5ff0708550e.png配置
错误码 | 错误提示 | 错误原因 | 解决方法 |
---|---|---|---|
001 | The change log need some words(not null) | 提交时没有添加log message | 提交时加上log message |
002 | wrong file name format with white space,",",*,?,",\,<,>,| | 文件或目录名称 以空格开头或结尾、包含,*?\<>|" | 修改出错文件名 |
003 | file xxx is not allowed in root directory! | working copy的根目录下不允许有文件(只能是版本目录) | 删除该文件或移动至版本目录下 |
004 | invalid dir name format xxx | working copy的根目录下不允许有非正整数的目录 | 删除该目录或改名 |
005 |
directory b/ is not allowed in root directory! Only positive integer dirs are allowed! |
working copy的根目录下存在不为正整数的目录 | 修改或删除该目录 |
006 | Too many versions!(less than 10 is permited) | 版本目录数多于10个 | 减少版本目录数目 |
007 | Error: Too many files: xxx (less than 2000 is allowed). | 目录下的文件个数太多 | 减少xxx目录下的文件数至2000以下 |
008 | dir APPNAME/dir(size:xxxx) is too large less than xxx | app各版本大小相加大于100M或某一个版本目录大小大于50M | 删除不必要的代码并重新提交 |
009 | File AAA is too large!(less than 4M) | 单个文件大小大于超过限制 | 删除该文件并重新提交 |
010 | deploy xx failed | 部署失败 | 内部原因,请联系saesupport@sina.cn |
N/A |
svn: The log message is a pathname (was -F intended?); use '--force-log' to override |
log message 与路径名称相同 | 修改log message或加选项--force-log |
N/A | File or dictionary '**' is out of date | 本地文件版本过旧 | 重新update即可 |
N/A |
Repository UUID '305b-a4b9-f4be' doesn't match expected UUID '44e2-1b69-bd12' |
服务器端仓库被删除重建,客户端对原仓库进行操作,报错。 | 重新checkout出一份代码即可 |
为何我创建的app版本目录下没有config.yaml文件?