标签: windows git file export history
将子文件夹拆分到新存储库中:
git subtree split --prefix=Folder1 --branch second_export git remote add newserver http://github.com/repo.git git push newserver second_export
将文件夹拆分为单独的存储库时,您不会丢失任何Git历史记录或更改。
问:如何拆分单个文件?