| gerrit gc - Run the Git garbage collection |
| 'ssh' -p <port> <host> 'gerrit gc' |
| Runs the Git garbage collection for the specified projects. |
| A Gerrit system administrator can define the default parameters that |
| should be used for running the garbage collection in the user global |
| Git configuration file of the system user that runs the Gerrit |
| Since the user global Git configuration file is overlaid with the Git |
| configuration on repository level it is possible to specify |
| repository specific parameters for the garbage collection in the Git |
| repository configuration of every project. |
| Caller must be a member of the privileged 'Administrators' group, |
| link:access-control.html#capability_runGC[Run Garbage Collection] |
| This command is intended to be used in scripts. |
| Name of the projects for which the Git garbage collection should be run. |
| If specified the Git garbage collection is run for all projects |
| Run the Git garbage collection for the projects 'myProject' and |
| $ ssh -p 29418 review.example.com gerrit gc myProject yourProject |
| collecting garbage for "myProject": |
| collecting garbage for "yourProject": |
| Run the Git garbage collection for all projects: |
| $ ssh -p 29418 review.example.com gerrit gc --all |
| Part of link:index.html[Gerrit Code Review] |