logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Git Repository - Optimize Repository with Git GC | Online Free DevTools by Hexmos

Optimize your Git repository with Git GC. Clean unnecessary files and improve repository performance. Free online tool, no registration required.

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

See Also