Reputation: 2189
Is it possible to use the new Visual Studio Online with a private DevOps repo?
Upvotes: 1
Views: 113
Reputation: 64
Yes. It is possible
Open a new terminal in VS Code online. Create a ssh key with this command
$ ssh-keygen
and then, copy the ssh public key whith this other command
$ cat $HOME/.ssh/id_rsa.pub
Copy the output content and create a public ssh key on azure devops
And then you can run a git clone passing the ssh url of the repository
Upvotes: 2