SVN Attempted to lock an already-locked dir异常解决方法

Attempted to lock an already-locked dir异常解决方法

eclipse或myeclipse用svn提交的时候报错:

Attempted to lock an already-locked dir

svn: Working copy ‘D:/Program Files/MyEclipse 6.6flex/workspace/emis/WebRoot/emis/emresource‘ locked

org.tigris.subversion.javahl.ClientException: Attempted to lock an already-locked dir

svn: Working copy ‘D:/Program Files/MyEclipse 6.6flex/workspace/emis/WebRoot/emis/emresource‘ locked

解决方法(4种):

1、直接找到该项目右键TortoiseSVN--->Clean up...

2、在客户端命令行使用命令 svn cleanup D:/Program Files/MyEclipse/workspace/proj/WebRoot/(被锁定的文件夹)

3、直接进入到上面的文件夹下的.svn目录,删除lock文件就可以了

4、直接在eclipse中 项目右键 team  - 清理(cleanup)

时间: 2024-10-21 14:47:16

SVN Attempted to lock an already-locked dir异常解决方法的相关文章

Attempted to lock an already-locked dir异常解决方法

有时候因网络太慢或中断 就会出现这种锁定状态 Attempted to lock an already-locked dir svn: Working copy 'D:\MyEclipse\myproject\org\home\pro\app\dao' locked 解决方法(3种): 1.在客户端命令行使用命令 svn cleanup D:/MyEclipse/workspace/WebRoot/...(被锁定的文件夹) 2.直接进入到上面的文件夹下的.svn目录,删除lock文件就可以了 3

org.tigris.subversion.javahl.ClientException: Attempted to lock an already-locked dir异常解决方法

解决方法(3种): 1.在客户端命令行使用命令 svn cleanup xxxxxx(被锁定的文件夹)2.直接进入到上面的文件夹下的.svn目录,删除lock文件就可以了 3.直接在eclipse中 项目右键 team  - 清理(cleanup)

SVN:Attempted to lock an already-locked dir 解决办法

出现这种情况主要是因为上次用SVN提交代码的时候没有提交完成就进行了中断 取消的操作. 控制台打印报错信息: Attempted to lock an already-locked dirsvn: Commit failed (details follow): 可以右键单击项目,然后选中以下选项 刷新清除 ,一次不行多刷几次即可. SVN:Attempted to lock an already-locked dir 解决办法,布布扣,bubuko.com

svn: E155017: Checksum mismatch while updating 校验错误的解决方法

[10.3.53.53:/EMRCV5]# svn up svn: E155004: Working copy '/EMRCV5' locked. svn: E155004: '/EMRCV5' is already locked. svn: run 'svn cleanup' to remove locks (type 'svn help cleanup' for details) [10.3.53.53:/EMRCV5]# svn cleanup [10.3.53.53:/EMRCV5]#

git提交过程中遇到的 index.lock 问题导致无法提交的解决方法

在提交代码的过程中,可能会遇到下面的问题: fatal: Unable to create 'C:/programLists/zzw-q1/.git/index.lock': File exists. If no other git process is currently running, this probably means a git process crashed in this repository earlier. Make sure no other git process is

Another app is currently holding the yum lock; waiting for it to exit 解决方法

Another app is currently holding the yum lock; waiting for it to exit... The other application is: PackageKit Memory : 46 M RSS (925 MB VSZ) Started: Thu Jul 6 08:40:45 2017 - 01:57 ago State : Running, pid: 10884 解决方法:手工杀死yum进程 sudo kill -9 10884

E: 无法获取锁 /var/lib/apt/lists/lock - open (11: Resource temporarily unavailable)解决方法

/********************************************************************* * Author  : Samson * Date    : 09/20/2014 * Test platform: *              Linux ubuntu 3.2.0-58-generic-pae *              GNU bash, version 4.2.39 * *****************************

E: 无法获得锁 /var/lib/apt/lists/lock - open (11: Resource temporarily unavailable)解决方法

/********************************************************************* * Author  : Samson * Date    : 09/20/2014 * Test platform: *              Linux ubuntu 3.2.0-58-generic-pae *              GNU bash, version 4.2.39 * *****************************

SVN 异常解决方法:cleanup failed–previous operation has not finished; run cleanup if it was interrupted

1下载sqlite3.exe 到你的项目的.svn文件,并查看否存在wc.db 2.将sqlite3.exe放到.svn的同级目录,启动cmd执行sqlite3 .svn/wc.db "select * from work_queue" 3.看到很多记录,下一步执行delete from work_queue 4.搞定,现在再到项目里面,执行cleanup,完全没问题了,图标状态也已经恢复了.