2016-01-11 11:11:22 -05:00
# Housekeeping
2019-10-07 14:06:24 -04:00
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/issues/3041) in GitLab 8.4.
2016-01-11 11:11:22 -05:00
2016-10-27 08:59:52 -04:00
## Automatic housekeeping
GitLab automatically runs `git gc` and `git repack` on repositories
2019-12-19 01:08:05 -05:00
after Git pushes. You can change how often this happens or turn it off in
2019-12-23 01:07:36 -05:00
**Admin Area > Settings > Repository** (`/admin/application_settings/repository`).
2016-10-27 08:59:52 -04:00
## Manual housekeeping
2016-01-11 11:11:22 -05:00
2019-12-19 01:08:05 -05:00
The housekeeping function runs `repack` or `gc` depending on the
2019-12-23 01:07:36 -05:00
**Housekeeping** settings configured in **Admin Area > Settings > Repository** .
2016-01-11 11:11:22 -05:00
2016-12-30 01:58:22 -05:00
For example in the following scenario a `git repack -d` will be executed:
2020-03-08 20:08:14 -04:00
- Project: pushes since GC counter (`pushes_since_gc`) = `10`
2018-11-13 01:07:16 -05:00
- Git GC period = `200`
- Full repack period = `50`
2016-12-30 01:58:22 -05:00
When the `pushes_since_gc` value is 50 a `repack -A -d --pack-kept-objects` will run, similarly when
the `pushes_since_gc` value is 200 a `git gc` will be run.
2019-10-07 14:06:24 -04:00
- `git gc` ([man page](https://mirrors.edge.kernel.org/pub/software/scm/git/docs/git-gc.html)) runs a number of housekeeping tasks,
2020-03-08 20:08:14 -04:00
such as compressing file revisions (to reduce disk space and increase performance)
2018-11-13 01:07:16 -05:00
and removing unreachable objects which may have been created from prior invocations of
`git add` .
2019-10-07 14:06:24 -04:00
- `git repack` ([man page](https://mirrors.edge.kernel.org/pub/software/scm/git/docs/git-repack.html)) re-organize existing packs into a single, more efficient pack.
2016-01-11 11:11:22 -05:00
2019-04-10 02:07:03 -04:00
You can find this option under your project's **Settings > General > Advanced** .
2016-01-11 11:11:22 -05:00
2016-01-21 17:10:47 -05:00
![Housekeeping settings ](img/housekeeping_settings.png )