Forrest logo
back to the az tool

az-pipelines:tldr:08fd7

az-pipelines: Get the details of a specific pipeline.
$ az pipelines show --org ${organization_url} --project ${project_name} --name ${pipeline_name}
try on your machine

The command az pipelines show is used to retrieve information about a specific pipeline in Azure DevOps.

Here is the breakdown of the command:

  • az pipelines show - This is the main command to display details about a pipeline.
  • --org ${organization_url} - This flag specifies the URL of the Azure DevOps organization where the project is located. ${organization_url} should be replaced with the actual URL.
  • --project ${project_name} - This flag specifies the name or ID of the project where the pipeline exists. ${project_name} should be replaced with the actual project name or ID.
  • --name ${pipeline_name} - This flag specifies the name or ID of the pipeline to be retrieved. ${pipeline_name} should be replaced with the actual name or ID of the pipeline.

By running this command with the correct values for organization URL, project name, and pipeline name, you will get detailed information about the specified pipeline, including its configuration, trigger settings, build definitions, and other relevant details.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the az tool