Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

33
tldr/pio-org Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# pio org
> Manage PlatformIO organizations and their owners.
> More information: <https://docs.platformio.org/en/latest/core/userguide/org/>.
- Create a new organization:
`pio org create {{organization_name}}`
- Delete an organization:
`pio org destroy {{organization_name}}`
- Add a user to an organization:
`pio org add {{organization_name}} {{username}}`
- Remove a user from an organization:
`pio org remove {{organization_name}} {{username}}`
- List all organizations the current user is a member of and their owners:
`pio org list`
- Update the name, email or display name of an organization:
`pio org update --orgname {{new_organization_name}} --email {{new_email}} --displayname {{new_display_name}} {{organization_name}}`