Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

30
az-devops Normal file
View File

@@ -0,0 +1,30 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# az devops
> Manage Azure DevOps organizations.
> Part of `azure-cli` (also known as `az`).
> More information: <https://learn.microsoft.com/cli/azure/devops>.
- Set the Personal Access Token (PAT) to login to a particular organization:
`az devops login --organization {{organization_url}}`
- Open a project in the browser:
`az devops project show --project {{project_name}} --open`
- List members of a specific team working on a particular project:
`az devops team list-member --project {{project_name}} --team {{team_name}}`
- Check the Azure DevOps CLI current configuration:
`az devops configure --list`
- Configure the Azure DevOps CLI behavior by setting a default project and a default organization:
`az devops configure --defaults project={{project_name}} organization={{organization_url}}`