I've created a new empty gitolite repo into which I want to push a snapshot (on my workstation) of my original git repo. I followed the instructions to do git push --all followed by git push --tags. This seemed to work great, but I find that some branch references didn't get pushed. Running git show-ref on my workstation shows a number of refs of the sort refs/remotes/origin/branchXyz, but doing git show-ref directly on the gitolite repo doesn't show this branch name at all (I expected to see it appear as refs/heads/branchXyz. How can I push the remaining branches?
Thanks!