How to mirror an Azure DevOps repository to a gitlab one

Viewed 330

I have deployed my own GitLab server on an Azure vm.

I was trying to mirror an existing Azure DevOps repository into a GitLab one.

I have followed the normal procedure:

  • going to /settings/repository#js-push-remote-settings on GitLab.

  • Expanding the mirroring panel.

  • I enter my git repo ssh URL

    ssh://git@ssh.dev.azure.com/v3/xxx/xxx/xxx
    
  • here I replaced the original : by / in front of the v3

  • I then added the public key generated by GitLab into my Azure DevOps public key.

When triggering the mirroring, I am getting the following error.

Host key verification failed.
fatal: Could not read from remote

From my research, it is a fingerprint issue.

However, how can I validate this fingerprint?

1 Answers
Related