mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 08:22:09 +02:00

* pages*: use generic word for help * git: add newline to the end Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * pages*: make help and version commands comply with the style guide * java: fix Java name --------- Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
24 lines
380 B
Markdown
24 lines
380 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`
|
|
|
|
- Display help:
|
|
|
|
`git gc --help`
|