mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-06 12:06:00 +02:00
pio-account: add page (#5410)
This commit is contained in:
parent
9db804476a
commit
c2156e1b33
1 changed files with 32 additions and 0 deletions
32
pages/common/pio-account.md
Normal file
32
pages/common/pio-account.md
Normal file
|
@ -0,0 +1,32 @@
|
|||
# pio account
|
||||
|
||||
> Manage your PlatformIO account in the command line.
|
||||
> More information: <https://docs.platformio.org/en/latest/core/userguide/account/index.html>.
|
||||
|
||||
- Register a new PlatformIO account:
|
||||
|
||||
`pio account register --username {{username}} --email {{email}} --password {{password}} --firstname {{firstname}} --lastname {{lastname}}`
|
||||
|
||||
- Permanently delete your PlatformIO account and related data:
|
||||
|
||||
`pio account destroy`
|
||||
|
||||
- Login to your PlatformIO account:
|
||||
|
||||
`pio account login --username {{username}} --password {{password}}`
|
||||
|
||||
- Logout of your PlatformIO account:
|
||||
|
||||
`pio account logout`
|
||||
|
||||
- Update your PlatformIO profile:
|
||||
|
||||
`pio account update --username {{username}} --email {{email}} --firstname {{firstname}} --lastname {{lastname}} --current-password {{password}}`
|
||||
|
||||
- Show detailed information about your PlatformIO account:
|
||||
|
||||
`pio account show`
|
||||
|
||||
- Reset your password using your username or email:
|
||||
|
||||
`pio account forgot --username {{username_or_email}}`
|
Loading…
Add table
Reference in a new issue