LinuxCommandLibrary

az-devops

Manage Azure DevOps organizations and projects

TLDR

Configure default organization and project

$ az devops configure --defaults organization=[https://dev.azure.com/contoso] project=[ContosoWebApp]
copy
List team projects in the organization
$ az devops project list
copy
Show details of a project
$ az devops project show --project [MyProject]
copy
Create a new project
$ az devops project create --name [MyProject] --org [https://dev.azure.com/contoso]
copy
Delete a project
$ az devops project delete --id [project-id] --yes
copy
Open a project in the web browser
$ az devops project show --project [MyProject] --open
copy
Login to Azure DevOps
$ az devops login
copy

SYNOPSIS

az devops subcommand [options]

DESCRIPTION

az devops manages Azure DevOps organization level operations. It provides CLI access to manage projects, teams, users, security, and extensions within Azure DevOps Services.
Related command groups include az pipelines for CI/CD pipelines, az boards for work items, az repos for Git repositories, and az artifacts for package feeds.

SUBCOMMANDS

configure

Configure Azure DevOps CLI or view configuration.
project list
List team projects.
project show
Show project details.
project create
Create a team project.
project delete
Delete a team project.
admin
Manage administration operations.
extension
Manage extensions.
security
Manage security related operations.
service-endpoint
Manage service endpoints/connections.
team
Manage teams.
user
Manage users.
wiki
Manage wikis.

CAVEATS

Requires the Azure DevOps CLI extension to be installed with az extension add --name azure-devops. Only available for Azure DevOps Services (cloud), not Azure DevOps Server (on-premises). Requires Azure CLI v2.0.69 or later.

SEE ALSO

az(1), az-pipelines(1), az-repos(1)

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community