1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 22:22:18 +02:00
tldr/pages/common/git-gc.md

24 lines
383 B
Markdown

# git gc
> Optimise the local repository by cleaning unnecessary files.
> More information: <https://git-scm.com/docs/git-gc>.
- Optimise the repository:
`git gc`
- Aggressively optimise, takes more time:
`git gc --aggressive`
- Do not prune loose objects (prunes by default):
`git gc --no-prune`
- Suppress all output:
`git gc --quiet`
- View full usage:
`git gc --help`