DEV Community

Pradeep Pradyumna
Pradeep Pradyumna

Posted on

2 1

Azure CLI: Get Azure repositories list in 4 steps

If you're looking for an azure cli command to get a list of repositories, you can follow the steps:

Step 1:

Download Azure CLI from here

Step 2:

Add the Azure DevOps extension
az extension add --name azure-devops

Step 3:

Configure defaults. Give YOUR organization and project names
az devops configure --defaults organization=https://dev.azure.com/<ORGANIZATION_NAME> project=<PROJECT_NAME>

Step 4:

Get list by running either of the below commands

az repos list --org "https://dev.azure.com/<ORGANIZATION_NAME>" -p "<PROJECT_NAME>" -o tsv --query [].name

or

az repos list --query '[].{Name:name, Url:remoteUrl}' -o json

Cheers!
Thanks for reading! 💛

Top comments (1)

Collapse
 
anspfeifer profile image
Anselmo Pfeifer

the value for query needs to be inside of simple quote '' like here: --query '[].name'

Billboard image

Create up to 10 Postgres Databases on Neon's free plan.

If you're starting a new project, Neon has got your databases covered. No credit cards. No trials. No getting in your way.

Try Neon for Free →

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay