获取 CVS/Git 的 MMIX 存储库
如何将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前尚不清楚您期望这样做做什么。 git 并不是驱动 CVS 的魔法,它是完全不同的东西。
git 确实有一个 cvsimport 工具,可以从 CVS 存储库中创建 git 存储库,但请注意,这将是完全不同的事情。
导入示例:
不过,我建议您在尝试使用其中之一来控制另一个之前更好地了解 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:
I'd recommend you understand both git and cvs better before trying to work with one gating the other, though.