snippetbashTip
git maintenance — Run tasks to optimize Git repository data. More information: <https://git-scm.com/docs/git-maintenan
Viewed 0 times
commandrunoptimizeclirepositorytasksgitgit maintenance
Problem
How to use the
git maintenance command: Run tasks to optimize Git repository data. More information: <https://git-scm.com/docs/git-maintenance>.Solution
git maintenance — Run tasks to optimize Git repository data. More information: <https://git-scm.com/docs/git-maintenance>.Register the current repository in the user's list of repositories to daily have maintenance run:
git maintenance registerSchedule maintenance tasks to run on the current repository every hour:
git maintenance startHalt the background maintenance schedule for the current repository:
git maintenance stopRemove the current repository from the user's maintenance repository list:
git maintenance unregisterRun a specific maintenance task on the current repository:
git maintenance run --task {{commit-graph|gc|incremental-repack|loose-objects|pack-refs|prefetch}}Code Snippets
Register the current repository in the user's list of repositories to daily have maintenance run
git maintenance registerSchedule maintenance tasks to run on the current repository every hour
git maintenance startHalt the background maintenance schedule for the current repository
git maintenance stopRemove the current repository from the user's maintenance repository list
git maintenance unregisterRun a specific maintenance task on the current repository
git maintenance run --task {{commit-graph|gc|incremental-repack|loose-objects|pack-refs|prefetch}}Context
tldr-pages: common/git maintenance
Revisions (0)
No revisions yet.