如何将 git 存储库同步到 subversion?

发布于 2024-09-14 02:17:17 字数 180 浏览 4 评论 0原文

我们使用多个托管在 github 上的开源库。我希望能够克隆 git 存储库,并将它们推送到我们本地的 subversion 存储库中,这样我就可以在内部为它们启动 CI 构建。

如何在从 github 克隆的 git 存储库中设置与 svn 服务器的连接?我了解如何从 subversion 中克隆..但是如何将新项目推入其中?

We use several open source libraries that are hosted on github. I want to be able to clone the git repositories and basically push them into our local subversion repository so I can start a CI build internally for them.

How do I set up the connection to the svn server in a git repository that I cloned from github? I understand how to clone out of subversion.. but how do I push a new project into it?

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

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

发布评论

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

评论(1

乞讨 2024-09-21 02:17:17

不幸的是,你必须安装 svn 和 git。

  1. 在 svn 中:使用较小的初始提交(例如自述文件)创建初始 svn 存储库。
  2. 在 git 中:在 git 中创建与该 svn 存储库相对应的远程分支。
  3. 为该 svn 分支创建一个跟踪分支,就像 svn 存储库是您的源一样。
  4. 将您的 git 提交从 master 分支重新设置到跟踪分支。
  5. git svn dcommit (将分支中的新提交发送到 svn)

git-svn 桥不涵盖所有边缘情况,例如将 git 存储库推送到 svn 存储库或添加 svn 忽略属性,所以有时我发现除了 git-svn 之外,你最终还必须直接使用 svn repo 副本。

You'll have to install svn as well as git, unfortunately.

  1. In svn: Create the initial svn repository with a minor initial commit, e.g. of a README.
  2. In git: Create a remote branch in git corresponding to that svn repo.
  3. Create a tracking branch for that svn branch as if the svn repo were your source.
  4. Rebase your git commits from your master branch onto the tracking branch.
  5. git svn dcommit (to send the new commits in the branch into svn)

The git-svn bridge doesn't cover all the edge cases, like pushing a git repo to an svn one or adding svn ignore properties, so sometimes you end up having to work with a svn repo copy directly in addition to the git-svn, I've found.

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