BioRod
BioRod

Reputation: 549

clone button is missing in Azure Devops

I have been tasked to move a repository from Azure Devops to a Bitbucket server. I'm very new to Azure Devops. When I went to my repository in Azure, I noticed that I can download the repo as a zip file but there were no options to clone. I downloaded the zip file and when I tried to unzip the file, I got the following message:

unzip: can't find file table

The unzip process won't complete successfully. Will somebody explain to me why I cannot unzip a file from Azure Devops or tell me why the 'clone' option is missing?

enter image description here

Upvotes: 3

Views: 5467

Answers (1)

Hugh Lin
Hugh Lin

Reputation: 19401

As Daniel Mann said in the comment, there is no clone button in tfvc repo.

To get a copy of the source code ,besides using tf.exe, you can also map a worksapce through visual studio. You can map your source control folder to a single local folder. You can refer to this document. enter image description here

In addition ,download code repo to a zip file and import it to the new domain is also a way. I tested the downloading as zip and it can be successfully unzip with 7-Zip.

Upvotes: 6

Related Questions