Files
tldr/pages.tr/common/git-gc.md
2022-10-31 06:52:35 -03:00

25 lines
414 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# git gc
> Gereksiz dosyaları silerek yerel depoyu optimize et.
> Daha fazla bilgi için: <https://git-scm.com/docs/git-gc>.
- Depoyu optimize et:
`git gc`
- Agresifçe optimiize et (daha uzun sürer):
`git gc --aggressive`
- Gevşek objeleri kesme (varsayılan olarak keser):
`git gc --no-prune`
- Tüm çıktıları sessize al:
`git gc --quiet`
- Tam kullanım için yardım göster:
`git gc --help`