3

我有一个存储库,它是通过从 SVN 存储库复制文件(而不是历史记录)创建的,此后在顶部添加了许多更改。

此后,我将 SVN 中的历史记录转换为 git,并将其与git merge -s ours.

问题是当我git blame对文件执行 a 时,它仍然显示每一行都是由 git 存储库中的初始提交创建的(它从 SVN 复制了所有文件),而不是真正负责的 SVN 提交。

有没有办法在不重写所有 git 历史的情况下解决这个问题?

4

1 回答 1

3

您可以为来自 git 的初始提交创建一个替换 ref,以使大多数 git 命令看起来起源于 git 的历史记录是基于从 svn 导入的历史记录构建的。

使用最新版本的 git 可以使用以下命令完成:

git replace --graft <FIRST_GIT_COMMIT> <LATEST_SVN_COMMIT>

对于不支持的旧版本,您可以使用以下命令执行相同操作:

git checkout -b temporary <FIRST_GIT_COMMIT>
# Set parent of next commit to last one from svn,
# but don't change the working tree or contents of next commit
git reset --soft <LATEST_SVN_COMMIT>
# Create a new commit using contents and message of the first git commit
git commit -C <FIRST_GIT_COMMIT>
# Tell git to use the newly created commit in place of the original git 
# commit in most cases.
git replace <FIRST_GIT_COMMIT> HEAD

但是,在任何一种情况下,替换引用都不会在推送或拉动时使用用于遥控器的标准 refspecs 自动传输。可以使用以下方法手动完成:

git push origin 'refs/replace/*:refs/replace/*'
git pull origin 'refs/replace/*:refs/replace/*'

在不更改最初使用 git 创建的每个提交的提交 ID 的情况下,不可能将更改的历史记录自动传输到其他存储库。

于 2013-05-10T04:31:07.060 回答