Reputation: 799
I've got private repo which uses Cert auth for https connection. This is why I can't use standard getting
But I can clone repo using SSH. Is there any way to do it in VSTS?
Upvotes: 2
Views: 754
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