Mercurial项目中包重命名的问题
我在我的 Java 项目中使用 Mercurial 一段时间了。我在一个两人团队中工作。当我进行合并时,我发现文件重命名并没有引起很多问题,但是包重命名却引起了重大问题。这是一个已知问题吗?有什么我可以做的吗?
I have been using Mercurial for a while in my Java project. I work in a two man team. When I do merges, I find that file renaming has not caused many problems, but package renaming has caused major issues. Is this a known problem? Is there anything I can do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用 hg 命令来执行此操作吗?
如果不使用 hg,则不应移动文件/目录。
使用 hg move 移动文件/目录或使用“hg mv --after”记录之前已更改的名称。
Are you using the hg commands to do this?
You shouldn't move files/directories without using hg.
Use hg move to move files/directories or "hg mv --after" to record a name that has already changed before.