Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我收到了多个 Git 捆绑文件,并希望将它们合并到一个存储库中。
我知道该命令git clone myfile.bundle将从捆绑文件创建一个 repo,然后我可以将其与所有其他文件合并在一起。有没有组合多个捆绑文件的方法?
git clone myfile.bundle
假设所有包都来自同一个 Git 存储库,您可以像从远程存储库中提取一样从它们中提取:
git pull捆绑文件 分支
确保按顺序拉动它们。否则,您将收到有关缺少启动提交的错误消息。