首先 - 向这个问题道歉.关于它的话题已经很多了.但我对他们没有太多运气.我对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
仅显示"从提交添加目标移动..."
即包含历史记录但在检查特定文件/目录时不显示.
我该怎么做呢?
我无法帮助你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`
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
上述步骤假设主分支用于源和目标.但是,标签和分支被忽略了.
我搬到的dir-to-move
方式repo 2
。首先将克隆到repo 1
一个新位置,然后将cd repo 1
复制到该文件夹。就我而言,我的文件夹移动repo 1
分支develop
到repo 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
拥有预期内容以及相关历史记录。