svn file is missing 解决办法

在svn commit的时候,会出现某某文件 is missing。这是因为此次提交时:远程repository中并没有该文件,而且本地repository也没有该文件。

具体原因:

  1.可能因为本地将原文件重命名

  2.远程repository对文件重命名或者误删等误操作

  3.。。。等等

出现此问题可尝试此解决方案,亲测,有效!

方案如下:

  step1:在出错的位置创建missing文件,然后commit改missing文件

  step2:在远程repository中删除刚才上传的missing文件

  step3:将本地repository文件重新commit即可

时间: 2024-12-16 07:07:42

svn file is missing 解决办法的相关文章

VS2012 error : Required file tracker.exe is missing 解决办法

初次使用VC2012 ,结果报告error : Required file tracker.exe is missing .从百度上搜索一遍,很多解决办法不靠谱,搜到靠谱的是英文版 连接如下: http://connect.microsoft.com/VisualStudio/feedback/details/540902 其实就是找到你的项目文件xxxx.vcxproj,使用编辑器打开,是xml格式的定义文件,查找关键字PropertyGroup 会发现有几个这样的配置,然后在这样的关键附近插

“Execution failed for task ‘:app:compileDebugAidl': aidl is missing”解决办法

转载: “Execution failed for task ‘:app:compileDebugAidl': aidl is missing”解决办法 今天重建android studio编程环境,老编译不过,提示:Execution failed for task ‘:app:compileDebugAidl': aidl is missing,在网上查了不少资料,终于在一个国外网站找到了解决办法: In my case I downloaded version 22 of Android

Zend Studio 开发Resource is out of sync with the file system的解决办法

SVN上down下来的项目,本地运行却无法显示页面,经过尝试给模板文件改名就能回避这个问题. 定位到是模板缓存的问题,于是清模板缓存. 但是发现ThinkPHP项目Runtime目录下的缓存文件在删除时候会提示: Resource is out of sync with the file system 原因是由于在不同的文件系统之间修改造成文件系统不同步. 解决方法是在Zend左侧的项目上右键-Refresh.或者F5刷新文件即可. 模板名字不用改名,再试,页面可正常打开.问题解决 建议在设置中

重启mysql提示:The server quit without updating PID file问题的解决办法

今天因为需要开启事件调度器event_scheduler,所以修改了mysql的配置文件/etc/my.cnf 就因为配置多了个分号,导致一直启动失败,如下图所示: 然后去网上搜了帖子(MySQL提示:The server quit without updating PID file问题的解决办法http://www.jb51.net/article/48625.htm),按照里面几种提供的方案都不能解决,于是查看mysql错误日志 #tail -n 400 /lutong/mysql/erro

fatal error C1083: Cannot open type library file: 'swpublished.tlb': No such file or directory 解决办法

在平台VC++2005 ,VC++2010 或是VC+2012 上使用 SolidWorks API SDK模板对Solidworks进行二次开发的时候 新建了一个项目在生成的时候总是得到下面的错误信息,现将解决办法分享出来! Error Information: Error 1 fatal error C1083: Can not open type library file: 'swpublished.tlb': No such file or directory c: \ users \

[转]Git – fatal: Unable to create 'XXX/.git/index.lock’: File exists.的解决办法

参考资料: http://sheshui.me/articles/git-quickly-tutorial-20120517 http://stackoverflow.com/questions/9282632/git-index-lock-file-exists-when-i-try-to-commit-but-cannot-delete-the-file 我的说明: 我操作的是ubuntu环境.window远程 1 若在window下远程打开操作窗口(不是console),进入.git目录删

Dreamhost 提示No input file specified. 的解决办法

如果开启FastCGI模式,.htaccess无法生效,一直提示no input file specified. 因为在Fastcgi模式下,php不支持rewrite的目标网址的PATH_INFO的解析 ThinkPHP运行在URL_MODEL=2时,会出现 No input file specified.的情况, 这时可以修改网站目录的.htaccess文件:(by default7#zbphp.com) RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]

Python出现SyntaxError: Non-ASCII character '\xe7' in file 错误的解决办法

发现是因为Python在默认状态下不支持源文件中的编码所致.解决方案有如下三种: 一.在文件头部添加如下注释码: # coding=<encoding name> 例如,可添加# coding=utf-8 二.在文件头部添加如下两行注释码: #!/usr/bin/python # -*- coding: <encoding name> -*- 例如,可添加# -*- coding: utf-8 -*- 三.在文件头部添加如下两行注释码: #!/usr/bin/python # vi

ImportError: libmysqlclient.so.20: cannot open shared object file: No such file or directory 解决办法

>>> import MySQLdbTraceback (most recent call last):  File "<stdin>", line 1, in <module>  File "build/bdist.linux-x86_64/egg/MySQLdb/__init__.py", line 19, in <module>  File "build/bdist.linux-x86_64/eg