Git 子树:将子树移动到不同的目录并拉取它

Git subtree: move subtree to a different directory and pull it

假设我创建了这样一个子树:

git subtree --add --prefix=subdir <path_to_remote> <remote_branch> --squash

然后我想 move/rename 子目录,所以我这样做: git mv subdir dir2/subdir

现在,当我尝试将该子树拉到新前缀时:

git subtree --pull --prefix=dir2/subdir <path_to_remote> <remote_branch> --squash

git 说:

Can't squash-merge: 'dir2/subdir' was never added.

我怎样才能正确地做到这一点?

git subtree 命令知道您的子树,因为它在您 add 子树时在第一次提交中存储名称:

Add 'subdir/' from commit 'c7fbc973614eced220dcef1663d43dad90676e00'

git-subtree-dir: subdir
git-subtree-mainline: c166dc69165f6678d3c409df344c4ed9577a2e11
git-subtree-split: c7fbc973614eced220dcef1663d43dad90676e00
使用 --squash 选项的

git subtree pull 查找包含 git-subtree-dir 的提交,以从远程存储库中找到最近的提交,从而找到应用和压缩所有内容的点提交。

在许多情况下 git subtree split --rejoin 操作会成功:

$ git subtree split --rejoin --prefix=dir2/subdir HEAD
Merge made by the 'ours' strategy.
25070c483647f8136655d0e0c6c3d62f469177aa

生成的提交看起来像:

Split 'dir2/subdir/' into commit '25070c483647f8136655d0e0c6c3d62f469177aa'

git-subtree-dir: dir2/subdir
git-subtree-mainline: 59cc3c770e78dbc30bdfe36a6b4e14ce83b38f6c
git-subtree-split: 25070c483647f8136655d0e0c6c3d62f469177aa

在大多数情况下,将找到此提交,下一个 git subtree pull --squash 将成功。请注意,有时子树操作会失败,并在您的存储库的工作副本中留下子树的一个分支。确保删除任何残留的临时分支以从头开始。

有时上面的操作不成功,但一直没找到原因。在这些情况下,您可以重新定位到添加子树的提交,并通过修改提交消息手动更改目录名称。但是,此操作会破坏其他人的整个历史记录。