Heroku Repo CLI Plugin
$ heroku plugins:install @heroku-cli/plugin-heroku-repo
$ heroku repo:COMMAND
running command...
$ heroku repo --help [COMMAND]
USAGE
$ heroku repo:COMMAND
...
heroku repo:clone
heroku repo:download [FILENAME]
heroku repo:gc
heroku repo:purge_cache
heroku repo:purge-cache
heroku repo:reset
clone the application repo to your local filesystem
USAGE
$ heroku repo:clone -a <value> [-r <value>]
FLAGS
-a, --app=<value> (required) app to run command against
-r, --remote=<value> the git remote to use
DESCRIPTION
clone the application repo to your local filesystem
See code: src/commands/repo/clone.ts
download the application repo as a tarball
USAGE
$ heroku repo:download [FILENAME] -a <value> [-r <value>]
ARGUMENTS
FILENAME a filename for the tarball
FLAGS
-a, --app=<value> (required) app to run command against
-r, --remote=<value> the git remote to use
DESCRIPTION
download the application repo as a tarball
See code: src/commands/repo/download.ts
run a git gc --aggressive on an application's repository
USAGE
$ heroku repo:gc -a <value> [-r <value>]
FLAGS
-a, --app=<value> (required) app to run command against
-r, --remote=<value> the git remote to use
DESCRIPTION
run a git gc --aggressive on an application's repository
See code: src/commands/repo/gc.ts
delete the contents of the build cache in the repository
USAGE
$ heroku repo:purge_cache -a <value> [-r <value>]
FLAGS
-a, --app=<value> (required) app to run command against
-r, --remote=<value> the git remote to use
DESCRIPTION
delete the contents of the build cache in the repository
ALIASES
$ heroku repo:purge_cache
delete the contents of the build cache in the repository
USAGE
$ heroku repo:purge-cache -a <value> [-r <value>]
FLAGS
-a, --app=<value> (required) app to run command against
-r, --remote=<value> the git remote to use
DESCRIPTION
delete the contents of the build cache in the repository
ALIASES
$ heroku repo:purge_cache
See code: src/commands/repo/purge-cache.ts
reset the repo
USAGE
$ heroku repo:reset -a <value> [-r <value>]
FLAGS
-a, --app=<value> (required) app to run command against
-r, --remote=<value> the git remote to use
DESCRIPTION
reset the repo
See code: src/commands/repo/reset.ts