Skip to content

Latest commit

 

History

History
104 lines (69 loc) · 2.15 KB

accounts.md

File metadata and controls

104 lines (69 loc) · 2.15 KB

heroku accounts

list the Heroku accounts in your cache

heroku accounts

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

heroku accounts:add NAME

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

heroku accounts:current

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

heroku accounts:remove NAME

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

heroku accounts:set NAME

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