snippetbashTip
pio org — Manage PlatformIO organizations and their owners. More information: <https://docs.platformio.org/en/
Viewed 0 times
organizationscommandandclimanagetheirpio orgplatformio
Problem
How to use the
pio org command: Manage PlatformIO organizations and their owners. More information: <https://docs.platformio.org/en/latest/core/userguide/org/>.Solution
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 listUpdate 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}}Code Snippets
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 listContext
tldr-pages: common/pio org
Revisions (0)
No revisions yet.