Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这里的问题是 hg' 工作流程显然是在一个圆圈中引导:
进入 2 hg 状态,查看如下输出:
! #foo.py# ? junk.out ? junk2.out
如果 foo.py 在您的 .hg-ignore'd 文件列表中,请尝试在提交时在命令行上明确指定它。
例如
hg commit -m "commit message" ./#foo.py
编辑:更仔细地查看您的错误:文件已被删除(!在状态列表中),但 hg 尚未跟踪删除。您需要使用以下命令告诉 hg 有关删除的信息:
hg rm -A ./foo.py
-A / --after在实际发生后记录删除的方法
-A / --after