1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/pio-account.md
bl-ue 8ebd171d6f
*: fix typos reported by Hunspell (#5848)
Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com>
Co-authored-by: Seth Falco <seth@falco.fun>
Co-authored-by: Patrice Denis <patricedenis@users.noreply.github.com>
2021-05-20 16:13:41 -04:00

32 lines
956 B
Markdown

# pio account
> Manage your PlatformIO account in the command-line.
> More information: <https://docs.platformio.org/en/latest/core/userguide/account/>.
- 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`
- Log in to your PlatformIO account:
`pio account login --username {{username}} --password {{password}}`
- Log out 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}}`