Hi, I am trying to add and clone in Fisheye a repo from azure devops but both https and ssh fail with errors. anyone can help on instructions how to setup any of them correctly?
https:
how do i put the user name? the copied url from azure devops that contain orgname@ is like
1. https://org@dev.azure.com/org/project/_git/repo
2. password for user1
I tried to replace and add the user also like https://username@dev.azure.com/org/project/_git/repo but also didnt work.
Error testing connection.
Error talking to repository:
at com.atlassian.fisheye.git.GitScmConfig.testConnection(GitScmConfig.java:120)
at com.cenqua.fisheye.RepositoryConfig.testConnection(RepositoryConfig.java:390)
at com.atlassian.fisheye.spi.admin.impl.DefaultRepositoryAdminService.testConnectionFor(DefaultRepositoryAdminService.java:964)
at sun.reflect.GeneratedMethodAccessor315.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
Connection failed.
ssh:
1. git@ssh.dev.azure.com:v3/org/project/repo
2. Generate key pair for ssh and add public key to azure managed keys
Test connection:
Error testing connection.
Error talking to repository:
at com.atlassian.fisheye.git.GitScmConfig.testConnection(GitScmConfig.java:120)
at com.cenqua.fisheye.RepositoryConfig.testConnection(RepositoryConfig.java:390)
at com.atlassian.fisheye.spi.admin.impl.DefaultRepositoryAdminService.testConnectionFor(DefaultRepositoryAdminService.java:964)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
Connection failed.
First, are you sure your fecru host is able to talk to your azure host from the server-side?
You can try to run a simple curl command from the server to test it.
Your https location string seems correct.
But the ssh one, I'd expect the port where you have ':v3'
LIke git@host.domain.com:7999/project/reponame.git (7999 is default ssh port for bitbucket server)
I've never worked with azure... so that might be incorrect advice
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.