MercurialEclipse 重命名

发布于 2024-11-14 23:12:27 字数 318 浏览 3 评论 0原文

我选择 Mercurial 作为存储库。项目的根目录是/Myproject,包含文件夹/MyProject/src/MyProject/res;现在我想在存储库中添加重命名文件夹以创建另一个层次结构:

/MyProject/Server/src
/MyProject/Server/res
/MyProject/Client/a
/MyProject/Client/b

如何在 MercurialEclipse 插件中执行此操作,而不在终端中使用 hg rename 命令?

I choose Mercurial as repo. The root of the project is /Myproject and contains folders /MyProject/src, and /MyProject/res; Now I want to add rename folders in the repository to create another hierarchy:

/MyProject/Server/src
/MyProject/Server/res
/MyProject/Client/a
/MyProject/Client/b

How can I do this in MercurialEclipse plugin, without using hg rename commands in terminal?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夏花。依旧 2024-11-21 23:12:27

从命令行来看:

hg rename src Server/src
hg rename red Server/res
hg commit -m 'moved res and src into Server'

大概您也可以在 MercurialEclipse 中做到这一点,但也许是时候把 GUI 拐杖扔到一边了。

From the command line that's:

hg rename src Server/src
hg rename red Server/res
hg commit -m 'moved res and src into Server'

presumably you can do that in MercurialEclipse too, but maybe it's time to toss the GUI crutches to the side.

神魇的王 2024-11-21 23:12:27

您只需执行重构/重命名(从文件的上下文菜单中重构->重命名,或 Alt+Shift+R / +选项+R)。 MercurialEclipse 将自动安排相关更改(删除旧文件并添加新文件)。

You can just do a Refactor/Rename (Refactor->Rename from a file's context menu, or Alt+Shift+R / +option+R). MercurialEclipse will automatically schedule the relevant changes (removing the old file and adding the new one).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文