| plugin install - Install/Add a plugin. |
| plugin add - Install/Add a plugin. |
| 'ssh' -p <port> <host> 'gerrit plugin install | add' |
| [--name <NAME> | -n <NAME>] |
| Install/Add a plugin. The plugin will be copied into the site path's |
| Caller must be a member of the privileged 'Administrators' group. |
| This command is intended to be used in scripts. |
| Plugin jar as piped input. |
| URL from where the plugin should be downloaded. This can be an |
| Absolute file path to the plugin jar. |
| The name under which the plugin should be installed. |
| Install a plugin from an absolute file path on the server's host: |
| ssh -p 29418 localhost gerrit plugin install -n name \ |
| Install a plugin from an HTTP site: |
| ssh -p 29418 localhost gerrit plugin install -n name \ |
| http://build-server/output/our-plugin.jar |
| Install a plugin from piped input: |
| ssh -p 29418 localhost gerrit plugin install -n name \ |
| Part of link:index.html[Gerrit Code Review] |