Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 SVN,暂时不打算迁移到 Git。我想试用 AppHarbor,但目前您必须使用 Git 将代码部署到 AppHarbor。
我想继续使用 SVN,但不时推送到 AppHarbor 的 git 存储库。有没有简单的方法来实现这一目标?
您可以使用以下命令创建 SVN 存储库的 git 克隆:
git svn clone --stdlayout <URL-OF-YOUR-SVN-REPOSITORY>
...并通过定期运行来保持最新:
git svn rebase
...在由git svn clone. 然后,您可以从 Subversion 存储库的 git 镜像推送到 AppHarbor。
git svn clone