You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GET /api/v4/projects/$proj_no/repository/tree?per_page=100&path=&ref=$branch_name&recursive=True
Doesn't work for branch_name other than master.
But using these 2 queries work ->
GET /api/v4/projects/$proj_no/repository/tree?per_page=100&path=&ref=$branch_name&recursive=True (ie adding a \ before =)
GET /api/v4/projects/$proj_no/repository/tree?per_page=100&path=&ref_name=$branch_name&recursive=True (ie using ref_name inplace of ref)
I have tested it. Please check if someone can reproduce it.
I can start working on a fix if the problem exists.