Uninstalled the gitlab and installed again , than respositories are present in the backend but not visible in the UI

its working with the steps you have mentioned,

  • go to /repositories/@hashed
  • cd into “//”. This is a bare git repository that was on your server
  • git remote add origin “”
  • git push --all origin
    with the above commands we will get the data of master branch.

---->to get the data from all the branches .
we need to checkout every branch and do the push

  • git remote add origin “”
  • git push --all origin

By this i was able to get my data
Thankyou @iwalker for your help

1 Like