0

We have recently lost access to our gitlab VM so we are unable to access our repositories. Is there any way to push our local repositories with all of their commits to a new gitlab server? We understand there's no way to restore issues, todos, etc.

Regards

Farzan
  • 745
  • 10
  • 25

1 Answers1

1

As this question explains: Import an existing git project into GitLab?

Create the repository on gitlab, add the new remote gitlab to your local repo and push.

git remote add gitlab url-to-gitlab-repo
git push gitlab master -f