I need to restore some repositories from an gitlab backup. This backup contains .bundle files for all the repos. How can I restore the complete respository with all branches in it?
If I run git bundle list-heads myfile.bundle
I can see all the branches.
I want to restore that repo locally with all branches to push it to a new/empty gitlab repository.
I've tried to use git clone, git pull all other tricks i could find but that only leads to a repo with only the master branch in it.