首页 > 其他分享 >svn: E200009: Commit failed (details follow)/both sides of the move must be committed together的解决办法

svn: E200009: Commit failed (details follow)/both sides of the move must be committed together的解决办法

时间:2023-05-24 20:02:10浏览次数:45  
标签:svn both www xgwy templates Commit E200009 main


今天在提交SVN的时候发生了如下错误,分析了一下原因,试了好几次才找到解决方法,失败原因如下:

svn: E200009: Commit failed (details follow):
svn: E200009: Cannot commit 'G:\jiaoyu\src\main\resources\templates\www\xgwy\company\company_content.html' because it was moved from 'G:\jiaoyu\src\main\resources\templates\www\xgwy\company_content.html' which is not part of the commit; both sides of the move must be committed together

 

svn: E200009: Commit failed (details follow):
 svn: E200009: Cannot commit 'F:\jiaoyu\src\main\resources\templates\www\xgwy\company\house.html' because it was moved from 'F:\jiaoyu\src\main\resources\templates\www\xgwy\house.html' which is not part of the commit; both sides of the move must be committed together

解决办法,同时提交新旧文件,应该是显示一个删除行为、一个添加行为。

另外,如果重命名后文件名的差别只有大小写不同,还是不能提交的,要先改成其他文件名,提交后再重新重命名,再提交一次

标签:svn,both,www,xgwy,templates,Commit,E200009,main
From: https://blog.51cto.com/u_16128050/6342819

相关文章

  • Docker 镜像原理(commit、容器数据卷)
    dokcer镜像原理联合文件系统(UnionFS)理解:假设:docker中包含的tomcat和mysql均需要使用linux内核,这里使用的linux内核是共用的。下载时候看到的一层层就是这个,Docker镜像实际是由一层一层的文件系统组成联合文件系统时Docker镜像的基础,镜像通过分层来进行继承特性:......
  • How to Delete a Git Branch Both Locally and Remotely
    TL;DRversionhttps://www.freecodecamp.org/news/how-to-delete-a-git-branch-both-locally-and-remotely///deletebranchlocallygitbranch-dlocalBranchName//deletebranchremotelygitpushorigin--deleteremoteBranchName#ToMakeLinuxshowuser@h......
  • SVN commit:remains in tree-conflict错误的解决办法
    昨天在提交一个新类包的时候,出错了,重新提交了几次也不行.Abortingcommit:‘C:/workspace/MyWork/src/org’remainsinconflict由于是新第一次提交,感觉上应该是没有问题的.最后上网找了一下,发现了解决办法.Eclipse中的解决办法右击工程目录–>team–>ShowTreeConflict......
  • SVN 导出改动差异文件
    目录SVN导出改动差异文件应用场景/背景介绍具体操作方法SVN导出改动差异文件应用场景/背景介绍当然下面的两个场景介绍可能用分支管理都会有不错的效果,或者更优,只是记录一下思路,用什么还是看大家个人爱好啦在开发过程中偶尔会遇到有bug不知道具体问题出在哪,需要一步步删......
  • svn Ignore for Visual Studio C#
    *.o*.lo*.la*.al.libs*.so*.so.[0-9]**.a*.pyc*.pyo*.rej*~#*#.#*.*.swp.DS_Store.vs*/bin*/obj*/Release*/Debug*.suo*.err*.log*.obj*.bin*.LOG*.user*.pdb[tT]emp[tT]empPEAnkh.Loadthumbs.db*.resharper*.vspscc*.vsssccc*.scc*/_Re......
  • .svn文件很大解决办法
    https://www.cnblogs.com/zhaoqingqing/p/8459564.html一个项目通过svn管理,迭代开发一年之后,.svn目录达到20G或更大,对于SSD硬盘来说是非常占用空间的,经过我的尝试,可以使用tortoiseSVN自带的cleanup为文件夹瘦身。操作方法:使用svn的Cleanup(清理)功能,勾选以下两项,会把本地缓存的一......
  • git 清理commit中历史提交记录的大文件
    git清理commit中历史提交记录的大文件起源是公司需要把代码仓库同步到另外一个代码仓库,结果另外一个仓库被限制大文件超过64M提交,所以会同步失败。刚开始我直接把大文件压缩到64m以内,结果还是同步失败。后来才知道是因为提交记录里面有包含大文件的信息也要删除才行。具体操作......
  • idea整合svn
    1.首先下载并安装svn,注意安装时要将commandlinedenttools选择为Willbeinstalledonlocalharddrive2.进入idea的Subversion设置项,选择tortoiseSVN中bin目录下的svn.exe3.然后到vcs中选择GetfromVesionControl,选择Versioncontrols为Subversion,以及在Repositories添......
  • 使用Git中,经常用commit -m推送到版本库?版本库又是什么?
    Hello,我是喜欢探索的索奇(即兴小索奇),在git中你可能会经常gitadd,gitcommit-m,gitpush,gitpull等操作....这是是第一篇给大家拓展git的知识,以后也会经常拓展的,因为它是代码之路,不可缺少的重要组成部分~版本库(Repository)是Git中的一个核心概念,它是用于存储项目代码、记录项目历史......
  • 【git】报错解决方案-'pre -commit hook failed (add --no-verify to bypass)'
    git-commit报错: 可以看到这个报错有两点,第一点是因为npm缓存问题,第二点是pre-commit导致的commit报错pre-commit钩子都被存储在Git目录下的hooks子目录中。当你用gitinit初始化一个新版本库时,Git默认会在这个目录中放置一些示例脚本。这些脚本除了本身可以被......