Мануалы и справочники Общие команды
git-gc

Команда git-gc: опции, ключи и примеры использования

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

Изображение Выучи 10 хороших привычек для работы в UNIX от IBM