-
Notifications
You must be signed in to change notification settings - Fork 226
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
prerelease: bump cli version to 8.0.2-beta.0
- Loading branch information
Showing
108 changed files
with
3,561 additions
and
3,866 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,12 +14,15 @@ list who has access to an app | |
|
||
``` | ||
USAGE | ||
$ heroku access | ||
$ heroku access -a <value> [--json] [-r <value>] | ||
OPTIONS | ||
-a, --app=app (required) app to run command against | ||
-r, --remote=remote git remote of app to use | ||
--json output in json format | ||
FLAGS | ||
-a, --app=<value> (required) app to run command against | ||
-r, --remote=<value> git remote of app to use | ||
--json output in json format | ||
DESCRIPTION | ||
list who has access to an app | ||
``` | ||
|
||
## `heroku access:add EMAIL` | ||
|
@@ -28,15 +31,20 @@ add new users to your app | |
|
||
``` | ||
USAGE | ||
$ heroku access:add EMAIL | ||
$ heroku access:add EMAIL -a <value> [-p <value>] [-r <value>] | ||
FLAGS | ||
-a, --app=<value> (required) app to run command against | ||
-p, --permissions=<value> list of permissions comma separated | ||
-r, --remote=<value> git remote of app to use | ||
DESCRIPTION | ||
add new users to your app | ||
OPTIONS | ||
-a, --app=app (required) app to run command against | ||
-p, --permissions=permissions list of permissions comma separated | ||
-r, --remote=remote git remote of app to use | ||
EXAMPLES | ||
$ heroku access:add [email protected] --app APP # add a collaborator to your app | ||
$ heroku access:add [email protected] --app APP --permissions deploy,manage,operate # permissions must be comma separated | ||
``` | ||
|
||
|
@@ -46,11 +54,15 @@ remove users from a team app | |
|
||
``` | ||
USAGE | ||
$ heroku access:remove EMAIL | ||
$ heroku access:remove EMAIL -a <value> [-r <value>] | ||
FLAGS | ||
-a, --app=<value> (required) app to run command against | ||
-r, --remote=<value> git remote of app to use | ||
DESCRIPTION | ||
remove users from a team app | ||
OPTIONS | ||
-a, --app=app (required) app to run command against | ||
-r, --remote=remote git remote of app to use | ||
EXAMPLES | ||
$ heroku access:remove [email protected] --app APP | ||
|
@@ -62,12 +74,16 @@ update existing collaborators on an team app | |
|
||
``` | ||
USAGE | ||
$ heroku access:update EMAIL | ||
$ heroku access:update EMAIL -a <value> [-p <value>] [-r <value>] | ||
FLAGS | ||
-a, --app=<value> (required) app to run command against | ||
-p, --permissions=<value> comma-delimited list of permissions to update (deploy,manage,operate) | ||
-r, --remote=<value> git remote of app to use | ||
DESCRIPTION | ||
update existing collaborators on an team app | ||
OPTIONS | ||
-a, --app=app (required) app to run command against | ||
-p, --permissions=permissions comma-delimited list of permissions to update (deploy,manage,operate) | ||
-r, --remote=remote git remote of app to use | ||
EXAMPLES | ||
$ heroku access:update [email protected] --app APP --permissions deploy,manage,operate | ||
|
Oops, something went wrong.