az-pipelines:tldr:8136f
The command az pipelines delete
is used to delete a pipeline in Azure DevOps, which is a cloud-based service for collaboration on code development and delivery.
Here's a breakdown of the command and its parameters:
-
--org ${organization_url}
: This parameter specifies the Azure DevOps organization URL where the pipeline exists. You need to replace${organization_url}
with the actual URL of your Azure DevOps organization. -
--project ${project_name}
: This parameter specifies the name of the project where the pipeline exists. You need to replace${project_name}
with the actual name of your project. -
--id ${pipeline_id}
: This parameter specifies the ID of the pipeline to be deleted. You need to replace${pipeline_id}
with the actual ID of the pipeline you want to delete.
By running this command with the appropriate values filled in, you can delete the specified pipeline from your Azure DevOps organization.