I want to clone project from azure through command prompt but I don't to use git commands. I tried using curl but didn't work.
curl https://azure.com/project private-token:asdadad45457547 --output "foldername.zip"
Please suggest some way to do.
Thanks in advance.
If you are using Azure web app, you can download your source code using Curl:
curl -o ./sourceCode.zip -u "username:password" "https://test.scm.azurewebsites.net/api/zip/site/wwwroot/"
This will download you with the zip file for your project which you can later extract. Please see this to get the right URL for you. As shown in this link, you can navigate to the kudu console and just get the URL by right-clicking the download button and copy the link to that specific folder which you want to download.