list the Heroku accounts in your cache
heroku accounts
heroku accounts:add NAME
heroku accounts:current
heroku accounts:remove NAME
heroku accounts:set NAME
list the Heroku accounts in your cache
USAGE
$ heroku accounts
DESCRIPTION
list the Heroku accounts in your cache
EXAMPLES
$ heroku accounts
See code: src/commands/accounts/index.ts
add a Heroku account to your cache
USAGE
$ heroku accounts:add NAME
ARGUMENTS
NAME name of Heroku account to add
DESCRIPTION
add a Heroku account to your cache
EXAMPLES
$ heroku accounts:add my-account
See code: src/commands/accounts/add.ts
display the current Heroku account
USAGE
$ heroku accounts:current
DESCRIPTION
display the current Heroku account
EXAMPLES
$ heroku accounts:current
See code: src/commands/accounts/current.ts
remove a Heroku account from your cache
USAGE
$ heroku accounts:remove NAME
ARGUMENTS
NAME name of Heroku account to remove
DESCRIPTION
remove a Heroku account from your cache
EXAMPLES
$ heroku accounts:remove my-account
See code: src/commands/accounts/remove.ts
set the current Heroku account from your cache
USAGE
$ heroku accounts:set NAME
ARGUMENTS
NAME name of account to set
DESCRIPTION
set the current Heroku account from your cache
EXAMPLES
$ heroku accounts:set my-account
See code: src/commands/accounts/set.ts