当我选择将文件添加到索引时,Eclipse显示以下错误。有什么方法可以解决这个问题吗?
<?php
// Get the title.
$title = get_the_title();
// Replace leading prefix and colon if one exists.
$title = preg_replace('/^[^:]+\:\s*/', '', $title);
// Output the title.
echo $title;
以下是异常的堆栈跟踪:
Failed to add resource to index
Failed to add resource to index
Exception caught during execution of add command
答案 0 :(得分:1)
通过手动删除 /home/user/location/.git/index.lock
文件解决了此错误。
我现在能够将文件添加到索引。
该文件位于 {{1}} 。