Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 817
BioRod Avatar asked Sep 11 '26 03:09

BioRod


1 Answers

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.

like image 131
Hugh Lin Avatar answered Sep 13 '26 19:09

Hugh Lin