当前位置:  开发笔记 > 编程语言 > 正文

git将目录移动到另一个存储库,同时保留历史记录

如何解决《git将目录移动到另一个存储库,同时保留历史记录》经验,为你挑选了3个好方法。

首先 - 向这个问题道歉.关于它的话题已经很多了.但我对他们没有太多运气.我对git缺乏熟悉并没有多大帮助.

我正在将一个文件夹从一个git repo移动到另一个(已经存在).例如

repo-1
---- dir1
---- dir2
---- dir3
---- dir-to-move
---- dir5

repo-2
---- dir1
---- dir2
---- dir3

最后我希望回购看起来像

repo-1
---- dir1
---- dir2
---- dir3
---- dir-to-move
---- dir5

repo-2
---- dir1
---- dir2
---- dir3
---- dir-to-move

也就是说,在两个回购中都存在dir-to-move.但最终我会将最新的更改迁移到repo-2并从repo-1中移除dir-to-move.

我最初的研究让我相信我需要使用filter-branch.例如

如何使用`git format-patch`和`git am`将文件从一个git repo移动到另一个保存历史记录

我已经知道子树取代了这种方法.然而,它并没有达到我的预期.我以为我能够做类似的事情

repo-1工作区中

git subtree split -P dir-to-move -b split

拆分分支过滤到仅dir-to-move及其历史记录.然后在repo-2工作区

git remote add repo-1 repo-1-url.git
git subtree add --prefix dir-to-move split

这确实会移动代码.它也有,包括历史

例如

cd repo-2
git log

显示repo-1的提交

cd repo-2
git log dir-to-move

仅显示"从提交添加目标移动..."

即包含历史记录但在检查特定文件/目录时不显示.

我该怎么做呢?



1> basin..:

我无法帮助你git subtree,但有filter-branch可能.

首先,您需要创建一个包含源和目标分支的公共存储库.这可以通过在"origin"旁边添加一个新的"remote"并从新的遥控器中获取来完成.

filter-branch在源分支上使用rm -rf除以外的所有目录dir-to-move.之后,您将拥有一个可以干净地重新定位或合并到目标分支的提交历史记录.我认为最简单的方法是cherry-pick从源分支进行所有非空提交.可以通过运行获得这些提交的列表git rev-list --reverse source-branch -- dir-to-move

当然,如果历史dir-to-move是非线性的(已经包含合并提交),那么它将不会被cherry-pick保留,因此git merge可以使用.

示例创建公共仓库:

cd repo-2
git remote add source ../repo-1
git fetch source

示例过滤器分支

cd repo-2
git checkout -b source-master source/master
CMD="rm -rf dir1 dir2 dir3 dir5"
git filter-branch --tree-filter "$CMD"

樱桃挑选目的地主人

cd repo-2
git checkout master
git cherry-pick `git rev-list --reverse source-master -- dir-to-move`



2> donnie..:

FWIW,经过多次迭代后,以下工作对我有用.

将两个仓库克隆到临时工作区.

git clone /repo-1.git 
git clone /repo-2.git
cd repo-1
git remote rm origin # delete link to original repository to avoid any accidental remote changes
git filter-branch --subdirectory-filter dir-to-move -- --all  # dir-to-move is being moved to another repo.  This command goes through history and files, removing anything that is not in the folder.  The content of this folder will be moved to root of the repo as a result. 
# This folder has to be moved to another folder in the target repo.  So, move everything to another folder.
git filter-branch -f --index-filter \
'git ls-files -s | /usr/local/bin/sed -e "s/\t\"*/&dir-to-move\//" |
    GIT_INDEX_FILE=$GIT_INDEX_FILE.new \
        git update-index --index-info &&
 mv "$GIT_INDEX_FILE.new" "$GIT_INDEX_FILE"' HEAD
# Above command will go through history and rewrite the history by adding dir-to-move/ to each files.  As a result, all files will be moved to a subfolder /dir-to-move.  Make sure to use gnu-sed as OSX sed doesn't handle some extensions correctly.  For eg. \t

现在切换到目标repo并从源获取所有内容.

git clone repo-2
git remote add master ../repo-1/
git pull master master --allow-unrelated-histories
git push  # push everything to remote 

上述步骤假设主分支用于源和目标.但是,标签和分支被忽略了.



3> GabiM..:

我搬到的dir-to-move方式repo 2。首先将克隆到repo 1一个新位置,然后将cd repo 1复制到该文件夹。就我而言,我的文件夹移动repo 1分支developrepo 2这里develop是不是存在呢。

git filter-branch --subdirectory-filter dir-to-move -- --all     #line 1
git remote -v                                                    #line 2
git remote set-url origin repo_2_remote_url                      #line 3
git remote -v                                                    #line 4
git push origin develop                                          #line 5

每行的说明:

    清除所有不相关的提交dir-to-move,删除该文件夹之外的所有文件,将所有内容移动到根文件夹中repo 1。从git docs:

只查看涉及给定子目录的历史记录。结果将包含该目录(仅该目录)作为其项目根目录

    您仍指向您的原始repo 1网址

    替换当前文件夹的原始网址以指向 repo 2

    检查网址是否已正确更新

    推送到repo 2(在这种情况下,是新创建的)develop分支

现在,您可以克隆或提取或获取您的repo 2存储库。您将在repo 2文件夹下dir-to-move拥有预期内容以及相关历史记录。

推荐阅读
wurtjq
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有