[ Git篇 ] Git-bundle

xiaoxiao2022-06-11  35

做项目过程中,经常遇到需要更新原厂的代码,有的时候发的patch,有的是发的bundle,stackoverflow 中有一个回答描述了两者的区别1

其实bundle将常用,其中Pro Git 一书中打包详细描述具体的方法2这里记录下常用的命令

用git bundle create命令来打包 $ git bundle create repo.bundle HEAD master Counting objects: 6, done. Delta compression using up to 2 threads. Compressing objects: 100% (2/2), done. Writing objects: 100% (6/6), 441 bytes, done. Total 6 (delta 0), reused 0 (delta 0)

然后你就会有一个名为 repo.bundle 的文件,该文件包含了所有重建该仓库 master 分支所需的数据。 在使用 bundle 命令时,你需要列出所有你希望打包的引用或者提交的区间。 如果你希望这个仓库可以在别处被克隆,你应该像例子中那样增加一个 HEAD 引用。

用git bundle create命令来打包,指定打包区间 $ git bundle create commits.bundle master ^9a466c5 Counting objects: 11, done. Delta compression using up to 2 threads. Compressing objects: 100% (3/3), done. Writing objects: 100% (9/9), 775 bytes, done. Total 9 (delta 0), reused 0 (delta 0) git bundle create commits.bundle master ^origin/mater 只打包那些在master中而不在origin/master分支中的commits 用git bundle verify校验是否合法 $ git bundle verify ../commits.bundle The bundle contains 1 ref 71b84daaf49abed142a373b6e5c59a22dc6560dc refs/heads/master The bundle requires these 1 ref 9a466c572fe88b195efd356c3f2bbeccdb504102 second commit ../commits.bundle is okay 用git bundle list-heads列出顶端提交 $ git bundle list-heads ../commits.bundle 71b84daaf49abed142a373b6e5c59a22dc6560dc refs/heads/master 用git fetch导入提交 //从包中取出 master 分支到我们仓库中的 'other-master' 分支: $ git fetch ../commits.bundle master:other-master From ../commits.bundle * [new branch] master -> other-master

当你在没有合适的网络或者可共享仓库的情况下,git bundle 很适合用于共享或者网络类型的操作。

详细步骤参考git-bundle - Move objects and refs by archive


Difference between git bundle and .patch ↩︎

Pro Git-打包 ↩︎

转载请注明原文地址: https://www.6miu.com/read-4930258.html

最新回复(0)