我有一个典型的问题就是将一个大型仓库拆分成较小的仓库,所以我搜索并发现了这个问题:http://gbayer.com/development/moving-files-from-one-git-repository-to-another-preserving-history/
git clone <git repository A url>
cd <git repository A directory>
git remote rm origin
git filter-branch --subdirectory-filter <directory 1> -- --all
mkdir <directory 1>
mv * <directory 1>
git add .
git commit
它对我有用,除了我的克隆是浅的。由于回购很大,我不得不克隆深度为0.
现在,我的选择是什么?
我应该:
答案 0 :(得分:1)
即使没有再次克隆,您也可以convert your current repo from shallow to "unshallow"
git fetch --unshallow
然后,您可以继续git filter-branch