Creating Bundles
A bundle is a package of change sets. To create a bundle from the contents of a repository you can use the git bundle command. For example,git bundle create dmp.bundle master branch-v1 HEAD will create a bundle named dmp.bundle that contains the master and the branch-v1 branches. You can list the reference names acceptable by git bundle create using git show-refs. It is important to include HEAD to be able to work with the bundle. You can also make use of:
git bundle create dmp.bundle --all
For more options consult the Git-bundle manual.
Was this helpful?