mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
pio-team: add page (#5524)
This commit is contained in:
parent
1c691c9624
commit
e00c94e3bb
1 changed files with 36 additions and 0 deletions
36
pages/common/pio-team.md
Normal file
36
pages/common/pio-team.md
Normal file
|
@ -0,0 +1,36 @@
|
|||
# pio team
|
||||
|
||||
> Manage PlatformIO teams.
|
||||
> More information: <https://docs.platformio.org/en/latest/core/userguide/team/>.
|
||||
|
||||
- Create a new team with the specified description:
|
||||
|
||||
`pio team create --description {{description}} {{organization_name}}:{{team_name}}`
|
||||
|
||||
- Delete a team:
|
||||
|
||||
`pio team destroy {{organization_name}}:{{team_name}}`
|
||||
|
||||
- Add a new user to a team:
|
||||
|
||||
`pio team add {{organization_name}}:{{team_name}} {{username}}`
|
||||
|
||||
- Remove a user from a team:
|
||||
|
||||
`pio team remove {{organization_name}}:{{team_name}} {{username}}`
|
||||
|
||||
- List all teams that the user is part of and their members:
|
||||
|
||||
`pio team list`
|
||||
|
||||
- List all teams in an organization:
|
||||
|
||||
`pio team list {{organization_name}}`
|
||||
|
||||
- Rename a team:
|
||||
|
||||
`pio team update --name {{new_team_name}} {{organization_name}}:{{team_name}}`
|
||||
|
||||
- Change the description of a team:
|
||||
|
||||
`pio team update --description {{new_description}} {{organization_name}}:{{team_name}}`
|
Loading…
Add table
Reference in a new issue