是否可以将颠覆存储库作为“子模块”?在吉特?
是否可以将 subversion 存储库作为 git 中的“子模块”?
在这个项目中,我们将有几个部分,但有些部分将使用 svn,有些部分将使用 git。因此,我正在研究“项目根”,我们可以将其他项目作为子模块(或类似的)。
问题是是否可以用 git 管理这个“项目根”?
谢谢 约翰
相反的问题可以在这里找到:
更新:
在反向问题中,VonC 给出了一个提示,可以使用 git 来完成此操作-svn, 有人有关于这是什么样子的例子吗?
Is it possible to have a subversion repository as a "submodule" in git?
In this project we will have several parts, but some parts will use svn and some will use git. So I am looking into a "project root" from where we can have the other projects as submodules (or similar).
And the question is if it is possible manage this "project root" with git?
Thanks
Johan
The inverse question can be found here:
Update:
In the inverse question VonC gave a tip that this could be done with git-svn,
does anybody have a example on how this could look like?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,如果 subversion 存储库首先克隆为 git 存储库:请参阅
git -svn
。克隆后,您可以在 git 存储库中进行一些修改,并将它们“dcommit”到 svn 存储库,或者您可以使用 svn 存储库演变来更新您的 git 存储库。
示例:Git - SVN 速成课程
Yes, if the subversion repo is first cloned as a git repo: see
git-svn
.Once there are cloned, you can make some modifications in the git repo and '
dcommit
' them to the svn repo, or you can update your git repo with svn repo evolutions.Example: Git - SVN Crash Course