12

我已将几个修订导入队列并尝试将它们全部弹出。不幸的是,根据其他一些访问同一存储库的 Mercurial 客户端,hg qpop -a没有成功完成:

> hg qpop -a
popping 115.diff
popping 114.diff
popping 113.diff
popping 112.diff
popping 111.diff
abort: The process cannot access the file because it is being used by
another process
C:\Program Files (x86)\Mercurial\library.zip\mercurial\dispatch.py:217:
DeprecationWarning: use lock.release instead of del lock

现在我不能再把补丁推回去了。Mercurial 总是抱怨“未知节点”:

> hg qpush -a
mq status file refers to unknown node b6fb614866f1
abort: working directory revision is not qtip

这是什么意思?如何解决这个问题?

4

1 回答 1

19

听起来您的 dirstate 已被失败的操作损坏。hg很久以前,邮件列表中报告了一个类似的问题(链接)。您应该查看Andreas Wuest的这篇关于恢复过程的博客文章。

它基本上归结为:

$ > .hg/patches/status          # force mq to think no patches are applied
$ hg debugrebuildstate -r tip   # rebuild your working copy

这不会破坏您的补丁队列,也不会丢失任何不属于补丁的工作副本更改。但是,您需要仔细检查(并可能修复)文件版本以恢复干净的工作副本。

于 2012-06-08T13:49:58.667 回答