Microshine
Microshine

Reputation: 799

How to get remote Git repository in VSTS using SSH?

I've got private repo which uses Cert auth for https connection. This is why I can't use standard getting

enter image description here

But I can clone repo using SSH. Is there any way to do it in VSTS?

Upvotes: 2

Views: 754

Answers (1)

starian chen-MSFT
starian chen-MSFT

Reputation: 33698

No, it is not supported in VSTS, you can follow up this uservoice: fetch source from Git via SSH in Visual Studio Team Services.

You may get the source by calling git clone ssh://xxx command through command line task during the build.

Upvotes: 2

Related Questions