Branches are not displayed in a project's commit tab
Created by: stzovairis
Summary:
When I browse the commits tab in a project I see that there are 5 branches but I don't see these displayed in the drop-down in the left (only 1 plus the master are displayed)
Steps to reproduce:
Create project test in gitlab git clone git@host:tests.git cd tests/ git checkout -b iss53 touch test.rb git add test.rb git commit git push origin iss53 git checkout -b test_124 git push origin test_124 git checkout -b test_125 git push origin test_125
I use gitlab 5.2 on centos 6
Expected behavior:
To list all branches in the drop-down
Observed behavior:
In this case only one branch is visible. However there are other cases where all branches are displayed and other cases where no branches (other than master) are displayed
Notes:
I have been also doing the following git clone --mirror github:repo and then git remote add mygitlab gitlab:repo and git push --mirror mygitlab for about 180 private github projects and get mixed results. Some projects have all their branches and tags displayed in the drop-down and some none