I'm trying to share our git repo with an offsite development team. We do not have a "master" branch. We have A/master, B/master, and C/master. I have a symbolic ref in my pub repo
HEAD -> refs/heads/B/master
When I create the bundle git bundle create my.bundle --remotes --tags
I end up with two references to refs/remotes/origin/B/master and that causes git clone --mirror my.bundle
to fail. Is there a way to ignore the symbolic ref?