我使用
分割了一个git repo$ git clone bigrepo smallrepo
$ cd smallrepo
$ git filter-branch --subdirectory-filter subdir/ master
现在,smallrepo现在具有与主分支上的subdir相关的历史记录,git log
仅显示此历史记录,git branch --all
仅列出主分支。但是,在SourceTree中,smallrepo的历史记录与单独的未命名分支上的subdir无关。
问题: