From e00c94e3bb6e14918d12897c33db543c0eb1a50c Mon Sep 17 00:00:00 2001 From: marchersimon <50295997+marchersimon@users.noreply.github.com> Date: Wed, 31 Mar 2021 16:26:52 +0200 Subject: [PATCH] pio-team: add page (#5524) --- pages/common/pio-team.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages/common/pio-team.md diff --git a/pages/common/pio-team.md b/pages/common/pio-team.md new file mode 100644 index 000000000..617a384f6 --- /dev/null +++ b/pages/common/pio-team.md @@ -0,0 +1,36 @@ +# pio team + +> Manage PlatformIO teams. +> More information: . + +- 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}}`