获取 CVS/Git 的 MMIX 存储库

发布于 2024-08-09 04:44:29 字数 625 浏览 3 评论 0原文

如何将 MMIX 的 CVS 存储库 获取到 CVS/Git?

我知道如何通过 git clone URL 克隆 github 上的存储库,但我以前从未真正使用过 sourceforge。他们使用 CVS,这对我来说是新的。

我的尝试不成功,

git cvs -d:pserver:[email protected]:/cvsroot/mmixmasters

我在 CVS -irc 上尝试首先通过 CVS 下载存储库时得到以下提示

cvs -d /tmp/ add co -PA mixmasters

但是,它没有按预期对我起作用。

How can you get the CVS repo of MMIX to CVS/Git?

I know how to clone a repo at github by git clone URL, but I have never really used sourceforge before. They use CVS which is new to me.

My unsuccessful attempt

git cvs -d:pserver:[email protected]:/cvsroot/mmixmasters

I get the following tip at CVS -irc in trying to download the repo by CVS first

cvs -d /tmp/ add co -PA mixmasters

However, it is not working for me as expected.

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

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

发布评论

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

评论(1

一城柳絮吹成雪 2024-08-16 04:44:29

目前尚不清楚您期望这样做做什么。 git 并不是驱动 CVS 的魔法,它是完全不同的东西。

git 确实有一个 cvsimport 工具,可以从 CVS 存储库中创建 git 存储库,但请注意,这将是完全不同的事情。

导入示例:

mkdir mmixmasters
cd mmixmasters
git cvsimport -d:pserver:[email protected]:/cvsroot/mmixmasters mmixmasters

不过,我建议您在尝试使用其中之一来控制另一个之前更好地了解 git 和 cvs。

It's not clear what you expected that to do. git is not magic that drives CVS, it's an entirely different thing altogether.

git does have a cvsimport tool that will make a git repository out of a CVS repository, but do note that this will be an entirely different thing.

An example import:

mkdir mmixmasters
cd mmixmasters
git cvsimport -d:pserver:[email protected]:/cvsroot/mmixmasters mmixmasters

I'd recommend you understand both git and cvs better before trying to work with one gating the other, though.

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