phil
phil

Reputation: 2189

Use New Visual Studio Online with Azure DevOps Repo

Is it possible to use the new Visual Studio Online with a private DevOps repo?

Upvotes: 1

Views: 113

Answers (1)

joaoigm
joaoigm

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

Related Questions