This happens because we run "git bundle create clone.bundle master" and master branch is not always present. One way to solve this is to do "git bundle create --all", which actually should improve efficiency of bundles. But need to analyze space impact.
This happens because we run "git bundle create clone.bundle master" and master branch is not always present. One way to solve this is to do "git bundle create --all", which actually should improve efficiency of bundles. But need to analyze space impact.