删除之前创建的 CVS 标记

发布于 2024-12-12 13:40:29 字数 69 浏览 3 评论 0原文

请让我知道如何删除已经从 Eclipse 创建的 CVS 标记。

如果标签被删除,是否可以创建同名的新标签?

Please let me know how to delete a CVS tag which was already created from eclipse.

If the tag is removed, can a new tag be created with same name?

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

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

发布评论

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

评论(4

墨小沫ゞ 2024-12-19 13:40:29

我认为 Eclipse 没有办法...您必须转到命令行并运行:

cvs tag -d <tag> <file/directory>

或者如果标记的文件不再位于您的系统上:

cvs rtag -d <tag> <location_in_repository>

I don't think there's a way from Eclipse...you'll have to go to the command line and run:

cvs tag -d <tag> <file/directory>

or if the tagged files are no longer on your system:

cvs rtag -d <tag> <location_in_repository>
时光是把杀猪刀 2024-12-19 13:40:29

如果您的目标是用新代码替换已标记的代码,您可以简单地使用与现有标记相同的标记名称来标记当前代码,但请务必选中“如果已存在则移动标记”选项。

If your aim is to replace the tagged code with the new one, you can simply tag the current code with the same tag name of the existing tag, but be sure to check the option "move tag if already exists".

蹲在坟头点根烟 2024-12-19 13:40:29

您可以删除标签并创建一个同名的新标签。

您甚至可以提交到您的标签中(您不应该这样做)。

我不知道如何用 eclipse 做到这一点,我总是使用 Tortoise 客户端。

You can delete your tag and create a new one with the same name.

You can even commit into your tag (you should not do that).

I dont know how to do this with eclipse, I used always Tortoise client.

歌枕肩 2024-12-19 13:40:29

所以您实际上可以从 Eclipse 中执行此操作。您可以通过多种方式实现它,我见过的两个地方是:

  1. 配置分支和版本如果您右键单击 CVS 存储库探索视图中的分支或版本,您将看到此选项
  2. 配置标签如果您在 Java 视图中对项目或文件进行比较,您将看到此选项。

中间有一个名为“这些项目的记住标签”的部分,旁边是“删除”按钮,在选择相关标签后可以单击该按钮。

So you actually can do this from Eclipse. You can hit it from a number of ways, 2 places I've seen it are:

  1. Configure Branches and Versions if you right click on a branch or version in the CVS Repository Exploring view you will see this option
  2. Configure Tags if you do a compare on a project or file in your Java view you will see this option.

From there there's a section in the middle called remembered tags for these projects and next to that is the Remove button that can be clicked after you select the tag in question.

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