绑定
完成这项工作的关键是首先克隆从 repo 历史开始的包:
git bundle create initial.bundle master
git tag -f some_previous_tag master # so the whole repo does not have to go each time
将该初始包添加到远程计算机; 和
git clone -b master initial.bundle remote_repo_name
完成这项工作的关键是首先克隆从 repo 历史开始的包:
git bundle create initial.bundle master
git tag -f some_previous_tag master # so the whole repo does not have to go each time
将该初始包添加到远程计算机; 和
git clone -b master initial.bundle remote_repo_name