在 Netbeans 6.9.1 中将 CVS 存储库转换为 SVN

发布于 2025-01-02 01:30:45 字数 176 浏览 0 评论 0原文

我在 Netbeans Java 项目中有一个大型 CVS 存储库。我曾经在 CVS 工作过几年,但由于某种原因,该公司开始将所有项目创建到 SVN;我知道的下一件事是我必须将当前的 Netbeans Java CVS 项目转换为 SVN 项目。

我一直在互联网上查找,但还没有发现任何有用的东西。有谁知道如何做到这一点?

I have a large CVS Repository in a Netbeans Java Project. I used to work with CVS for several years, but for some reason the company started to create all of their projects to SVN; next thing I know is that I have to convert my current Netbeans Java CVS Project into a SVN one.

I have been looking over the internets but I haven't found anything useful yet. Does anyone know a way to do it?

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

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

发布评论

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

评论(2

红ご颜醉 2025-01-09 01:30:45

Netbeans 没有“让我快乐”按钮。对不起。

您必须从 SVN 签出源并将 Netbeans 指向新的文件层次结构...

请注意,Netbeans 开箱即用地支持 CVS、SVN 和 Mercurial VCS。

如果项目结构未更改,您可以使用 --force 删除 CVS 目录并从 SVN 检出源(以避免在 Netbeans 中重新配置项目):

  $ find . -type d -name CVS -exec rm -r '{}' ';'
  $ svn co --force http://$U:$P@$H

Netbeans does not have button "Make me happy". Sorry.

You must checkout sources from SVN and point Netbeans to new file hierarchy...

Note that Netbeans support CVS, SVN and Mercurial VCS out of the box.

If project structure does not changed you can delete CVS dirs and checkout sources from SVN with --force (to avoid reconfiguring projects in Netbeans):

  $ find . -type d -name CVS -exec rm -r '{}' ';'
  $ svn co --force http://$U:$P@$H
半步萧音过轻尘 2025-01-09 01:30:45

您可以使用 cvs2svn 工具将 CVS 历史记录导入到 Subversion 存储库中。

You can use the cvs2svn tool to import the CVS history into a Subversion repo.

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