Mercurial hg mv 不会移动所有文件
可能很简单,但我还没有通过通常的搜索查询挖掘出任何内容,所以我想我应该在这里问。基本上我正在尝试重新安排我的仓库;例如:
mkdir test
hg mv DirectoryOfStuff test/
Mercurial 移动了大部分内容,但它留下了一些目录和文件。到目前为止,我还没有看到任何它移动和不移动的模式。
我是否缺少明显的规则或命令?
谢谢!
Probably an easy one but I haven't dug up anything with the usual search queries so I thought I'd ask here. Basically I'm trying to rearrange my repo; for example:
mkdir test
hg mv DirectoryOfStuff test/
Mercurial moves most of the contents but it leaves some directories an files behind. So far I haven't seen any pattern to what it moves and what it doesn't.
Is there an obvious rule or command that I'm missing?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
hg mv
移动跟踪的文件,而不是忽略或未知的文件。要移动所有内容并仍将跟踪文件记录为移动的文件,请使用常规(非 hg)移动命令,然后使用
hg addremove -s 100
。 addremove 命令将您的文件操作改进为添加/删除/重命名/移动。使用小于 100 来允许更改文件内容和内容名称。
hg mv
moves tracked files, not ignored or unknown ones.To move everything and still record tracked files as a moved, use a regular (non-hg) move command and then
hg addremove -s 100
. The addremove command retrofits your file operations as add/remove/rename/move.Use less than 100 to allow changes in file content & names.