【发布时间】:2015-11-03 01:29:06
【问题描述】:
一个月前,我 git svn clone 建立了 SVN 存储库,并开始使用更新版本的编译器构建源代码。一个月内,原始的 SVN 存储库发生了变化(提交了一堆提交的人数)。现在我想在 git 存储库中进行所有这些更改。
我尝试将 svn-remote 部分添加到 git 的配置文件中。 according to this
但它没有工作。有什么想法或建议吗?我想了解对 svn repo 所做的所有提交的历史记录。 (git log 中的作者和提交消息)
谢谢
【问题讨论】:
-
git svn rebase- git-scm.com/docs/git-svn -
你最初是如何克隆 svn 的?
git svn info会显示原始的 svn 存储库吗?然后只需按照上面的建议即可。 -
git svn info 给我
Unable to determine upstream SVN information from working tree history -
我做了`git svn clone
--preserve-empty-dirs --authors-file= /path/to/git/local -
@1615903 ,
git svn rebase给了我同样的错误:Unable to determine upstream SVN information from working tree history那是因为我在我的 git 分支上工作而不是在主线上工作吗? SVN 的分支概念与 Git 大不相同。
标签: git svn version-control git-svn