Complete the code to create a new Azure DevOps organization using the Azure CLI.
az devops [1] create --name MyOrg --location eastusThe command az devops organization create creates a new Azure DevOps organization.
Complete the code to create a new project inside an Azure DevOps organization.
az devops project [1] --name MyProject --organization https://dev.azure.com/MyOrgThe command az devops project create creates a new project inside the specified organization.
Fix the error in the command to list all projects in an Azure DevOps organization.
az devops project [1] --organization https://dev.azure.com/MyOrgThe correct command to list projects is az devops project list.
Fill both blanks to set the default Azure DevOps organization and list its projects.
az devops configure --[1] https://dev.azure.com/MyOrg az devops project [2]
First, set the default organization with az devops configure --organization. Then list projects with az devops project list.
Fill all three blanks to create a new project with a description and visibility in Azure DevOps.
az devops project create --name [1] --description [2] --visibility [3] --organization https://dev.azure.com/MyOrg
The command creates a project named 'MyProject' with a description and sets visibility to 'private'.