]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-maintenance.txt
maintenance: `git maintenance run` learned `--scheduler=<scheduler>`
[thirdparty/git.git] / Documentation / git-maintenance.txt
CommitLineData
2057d750
DS
1git-maintenance(1)
2==================
3
4NAME
5----
6git-maintenance - Run tasks to optimize Git repository data
7
8
9SYNOPSIS
10--------
11[verse]
12'git maintenance' run [<options>]
13
14
15DESCRIPTION
16-----------
17Run tasks to optimize Git repository data, speeding up other Git commands
18and reducing storage requirements for the repository.
19
20Git commands that add repository data, such as `git add` or `git fetch`,
21are optimized for a responsive user experience. These commands do not take
22time to optimize the Git data, since such optimizations scale with the full
23size of the repository while these user commands each perform a relatively
24small action.
25
26The `git maintenance` command provides flexibility for how to optimize the
27Git repository.
28
29SUBCOMMANDS
30-----------
31
0c18b700
DS
32register::
33 Initialize Git config values so any scheduled maintenance will
34 start running on this repository. This adds the repository to the
35 `maintenance.repo` config variable in the current user's global
36 config and enables some recommended configuration values for
37 `maintenance.<task>.schedule`. The tasks that are enabled are safe
38 for running in the background without disrupting foreground
39 processes.
61f7a383 40+
7efc3782 41The `register` subcommand will also set the `maintenance.strategy` config
61f7a383
DS
42value to `incremental`, if this value is not previously set. The
43`incremental` strategy uses the following schedule for each maintenance
44task:
45+
46--
47* `gc`: disabled.
48* `commit-graph`: hourly.
49* `prefetch`: hourly.
50* `loose-objects`: daily.
51* `incremental-repack`: daily.
52--
53+
54`git maintenance register` will also disable foreground maintenance by
55setting `maintenance.auto = false` in the current repository. This config
56setting will remain after a `git maintenance unregister` command.
0c18b700 57
2057d750 58run::
65d655b5
DS
59 Run one or more maintenance tasks. If one or more `--task` options
60 are specified, then those tasks are run in that order. Otherwise,
61 the tasks are determined by which `maintenance.<task>.enabled`
62 config options are true. By default, only `maintenance.gc.enabled`
63 is true.
2057d750 64
2fec604f
DS
65start::
66 Start running maintenance on the current repository. This performs
67 the same config updates as the `register` subcommand, then updates
68 the background scheduler to run `git maintenance run --scheduled`
69 on an hourly basis.
70
71stop::
72 Halt the background maintenance schedule. The current repository
73 is not removed from the list of maintained repositories, in case
74 the background maintenance is restarted later.
75
0c18b700
DS
76unregister::
77 Remove the current repository from background maintenance. This
78 only removes the repository from the configured list. It does not
79 stop the background maintenance processes from running.
80
2057d750
DS
81TASKS
82-----
83
663b2b1b
DS
84commit-graph::
85 The `commit-graph` job updates the `commit-graph` files incrementally,
86 then verifies that the written data is correct. The incremental
87 write is safe to run alongside concurrent Git processes since it
88 will not expire `.graph` files that were in the previous
89 `commit-graph-chain` file. They will be deleted by a later run based
90 on the expiration delay.
91
28cb5e66
DS
92prefetch::
93 The `prefetch` task updates the object directory with the latest
94 objects from all registered remotes. For each remote, a `git fetch`
cfd781ea
DS
95 command is run. The configured refspec is modified to place all
96 requested refs within `refs/prefetch/`. Also, tags are not updated.
28cb5e66
DS
97+
98This is done to avoid disrupting the remote-tracking branches. The end users
99expect these refs to stay unmoved unless they initiate a fetch. With prefetch
100task, however, the objects necessary to complete a later real fetch would
101already be obtained, so the real fetch would go faster. In the ideal case,
83fcadd6 102it will just become an update to a bunch of remote-tracking branches without
28cb5e66
DS
103any object transfer.
104
2057d750
DS
105gc::
106 Clean up unnecessary files and optimize the local repository. "GC"
107 stands for "garbage collection," but this task performs many
108 smaller tasks. This task can be expensive for large repositories,
109 as it repacks all Git objects into a single pack-file. It can also
110 be disruptive in some situations, as it deletes stale data. See
111 linkgit:git-gc[1] for more details on garbage collection in Git.
112
252cfb7c
DS
113loose-objects::
114 The `loose-objects` job cleans up loose objects and places them into
115 pack-files. In order to prevent race conditions with concurrent Git
116 commands, it follows a two-step process. First, it deletes any loose
117 objects that already exist in a pack-file; concurrent Git processes
118 will examine the pack-file for the object data instead of the loose
119 object. Second, it creates a new pack-file (starting with "loose-")
120 containing a batch of loose objects. The batch size is limited to 50
121 thousand objects to prevent the job from taking too long on a
122 repository with many loose objects. The `gc` task writes unreachable
123 objects as loose objects to be cleaned up by a later step only if
124 they are not re-added to a pack-file; for this reason it is not
125 advisable to enable both the `loose-objects` and `gc` tasks at the
126 same time.
127
52fe41ff
DS
128incremental-repack::
129 The `incremental-repack` job repacks the object directory
130 using the `multi-pack-index` feature. In order to prevent race
131 conditions with concurrent Git commands, it follows a two-step
132 process. First, it calls `git multi-pack-index expire` to delete
133 pack-files unreferenced by the `multi-pack-index` file. Second, it
134 calls `git multi-pack-index repack` to select several small
135 pack-files and repack them into a bigger one, and then update the
136 `multi-pack-index` entries that refer to the small pack-files to
137 refer to the new pack-file. This prepares those small pack-files
138 for deletion upon the next run of `git multi-pack-index expire`.
139 The selection of the small pack-files is such that the expected
140 size of the big pack-file is at least the batch size; see the
141 `--batch-size` option for the `repack` subcommand in
142 linkgit:git-multi-pack-index[1]. The default batch-size is zero,
143 which is a special case that attempts to repack all pack-files
144 into a single pack-file.
145
41abfe15
DS
146pack-refs::
147 The `pack-refs` task collects the loose reference files and
148 collects them into a single file. This speeds up operations that
149 need to iterate across many references. See linkgit:git-pack-refs[1]
150 for more information.
151
2057d750
DS
152OPTIONS
153-------
154--auto::
155 When combined with the `run` subcommand, run maintenance tasks
156 only if certain thresholds are met. For example, the `gc` task
157 runs when the number of loose objects exceeds the number stored
158 in the `gc.auto` config setting, or when the number of pack-files
b08ff1fe
DS
159 exceeds the `gc.autoPackLimit` config setting. Not compatible with
160 the `--schedule` option.
161
162--schedule::
163 When combined with the `run` subcommand, run maintenance tasks
164 only if certain time conditions are met, as specified by the
165 `maintenance.<task>.schedule` config value for each `<task>`.
166 This config value specifies a number of seconds since the last
167 time that task ran, according to the `maintenance.<task>.lastRun`
168 config value. The tasks that are tested are those provided by
169 the `--task=<task>` option(s) or those with
170 `maintenance.<task>.enabled` set to true.
2057d750 171
3ddaad0e
DS
172--quiet::
173 Do not report progress or other information over `stderr`.
174
090511bc
DS
175--task=<task>::
176 If this option is specified one or more times, then only run the
65d655b5
DS
177 specified tasks in the specified order. If no `--task=<task>`
178 arguments are specified, then only the tasks with
179 `maintenance.<task>.enabled` configured as `true` are considered.
180 See the 'TASKS' section for the list of accepted `<task>` values.
090511bc 181
eba1ba9d
LH
182--scheduler=auto|crontab|launchctl|schtasks::
183 When combined with the `start` subcommand, specify the scheduler
184 for running the hourly, daily and weekly executions of
185 `git maintenance run`.
186 Possible values for `<scheduler>` are `auto`, `crontab` (POSIX),
187 `launchctl` (macOS), and `schtasks` (Windows).
188 When `auto` is specified, the appropriate platform-specific
189 scheduler is used. Default is `auto`.
190
0016b618
DS
191
192TROUBLESHOOTING
193---------------
194The `git maintenance` command is designed to simplify the repository
195maintenance patterns while minimizing user wait time during Git commands.
196A variety of configuration options are available to allow customizing this
197process. The default maintenance options focus on operations that complete
198quickly, even on large repositories.
199
200Users may find some cases where scheduled maintenance tasks do not run as
201frequently as intended. Each `git maintenance run` command takes a lock on
202the repository's object database, and this prevents other concurrent
203`git maintenance run` commands from running on the same repository. Without
204this safeguard, competing processes could leave the repository in an
205unpredictable state.
206
207The background maintenance schedule runs `git maintenance run` processes
208on an hourly basis. Each run executes the "hourly" tasks. At midnight,
209that process also executes the "daily" tasks. At midnight on the first day
210of the week, that process also executes the "weekly" tasks. A single
211process iterates over each registered repository, performing the scheduled
212tasks for that frequency. Depending on the number of registered
213repositories and their sizes, this process may take longer than an hour.
214In this case, multiple `git maintenance run` commands may run on the same
215repository at the same time, colliding on the object database lock. This
216results in one of the two tasks not running.
217
218If you find that some maintenance windows are taking longer than one hour
219to complete, then consider reducing the complexity of your maintenance
220tasks. For example, the `gc` task is much slower than the
221`incremental-repack` task. However, this comes at a cost of a slightly
222larger object database. Consider moving more expensive tasks to be run
223less frequently.
224
225Expert users may consider scheduling their own maintenance tasks using a
226different schedule than is available through `git maintenance start` and
227Git configuration options. These users should be aware of the object
228database lock and how concurrent `git maintenance run` commands behave.
229Further, the `git gc` command should not be combined with
230`git maintenance run` commands. `git gc` modifies the object database
231but does not take the lock in the same way as `git maintenance run`. If
232possible, use `git maintenance run --task=gc` instead of `git gc`.
233
16c56909
DS
234The following sections describe the mechanisms put in place to run
235background maintenance by `git maintenance start` and how to customize
236them.
237
238BACKGROUND MAINTENANCE ON POSIX SYSTEMS
239---------------------------------------
240
241The standard mechanism for scheduling background tasks on POSIX systems
242is cron(8). This tool executes commands based on a given schedule. The
243current list of user-scheduled tasks can be found by running `crontab -l`.
244The schedule written by `git maintenance start` is similar to this:
245
246-----------------------------------------------------------------------
247# BEGIN GIT MAINTENANCE SCHEDULE
248# The following schedule was created by Git
249# Any edits made in this region might be
250# replaced in the future by a Git command.
251
2520 1-23 * * * "/<path>/git" --exec-path="/<path>" for-each-repo --config=maintenance.repo maintenance run --schedule=hourly
2530 0 * * 1-6 "/<path>/git" --exec-path="/<path>" for-each-repo --config=maintenance.repo maintenance run --schedule=daily
2540 0 * * 0 "/<path>/git" --exec-path="/<path>" for-each-repo --config=maintenance.repo maintenance run --schedule=weekly
255
256# END GIT MAINTENANCE SCHEDULE
257-----------------------------------------------------------------------
258
259The comments are used as a region to mark the schedule as written by Git.
260Any modifications within this region will be completely deleted by
261`git maintenance stop` or overwritten by `git maintenance start`.
262
263The `crontab` entry specifies the full path of the `git` executable to
264ensure that the executed `git` command is the same one with which
265`git maintenance start` was issued independent of `PATH`. If the same user
266runs `git maintenance start` with multiple Git executables, then only the
267latest executable is used.
268
269These commands use `git for-each-repo --config=maintenance.repo` to run
270`git maintenance run --schedule=<frequency>` on each repository listed in
271the multi-valued `maintenance.repo` config option. These are typically
272loaded from the user-specific global config. The `git maintenance` process
273then determines which maintenance tasks are configured to run on each
274repository with each `<frequency>` using the `maintenance.<task>.schedule`
275config options. These values are loaded from the global or repository
276config values.
277
278If the config values are insufficient to achieve your desired background
279maintenance schedule, then you can create your own schedule. If you run
280`crontab -e`, then an editor will load with your user-specific `cron`
281schedule. In that editor, you can add your own schedule lines. You could
282start by adapting the default schedule listed earlier, or you could read
283the crontab(5) documentation for advanced scheduling techniques. Please
284do use the full path and `--exec-path` techniques from the default
285schedule to ensure you are executing the correct binaries in your
286schedule.
287
0016b618 288
2afe7e35
DS
289BACKGROUND MAINTENANCE ON MACOS SYSTEMS
290---------------------------------------
291
292While macOS technically supports `cron`, using `crontab -e` requires
293elevated privileges and the executed process does not have a full user
294context. Without a full user context, Git and its credential helpers
295cannot access stored credentials, so some maintenance tasks are not
296functional.
297
298Instead, `git maintenance start` interacts with the `launchctl` tool,
299which is the recommended way to schedule timed jobs in macOS. Scheduling
300maintenance through `git maintenance (start|stop)` requires some
301`launchctl` features available only in macOS 10.11 or later.
302
303Your user-specific scheduled tasks are stored as XML-formatted `.plist`
304files in `~/Library/LaunchAgents/`. You can see the currently-registered
305tasks using the following command:
306
307-----------------------------------------------------------------------
308$ ls ~/Library/LaunchAgents/org.git-scm.git*
309org.git-scm.git.daily.plist
310org.git-scm.git.hourly.plist
311org.git-scm.git.weekly.plist
312-----------------------------------------------------------------------
313
314One task is registered for each `--schedule=<frequency>` option. To
315inspect how the XML format describes each schedule, open one of these
316`.plist` files in an editor and inspect the `<array>` element following
317the `<key>StartCalendarInterval</key>` element.
318
319`git maintenance start` will overwrite these files and register the
320tasks again with `launchctl`, so any customizations should be done by
321creating your own `.plist` files with distinct names. Similarly, the
322`git maintenance stop` command will unregister the tasks with `launchctl`
323and delete the `.plist` files.
324
325To create more advanced customizations to your background tasks, see
326launchctl.plist(5) for more information.
327
328
3797a0a7
DS
329BACKGROUND MAINTENANCE ON WINDOWS SYSTEMS
330-----------------------------------------
331
332Windows does not support `cron` and instead has its own system for
333scheduling background tasks. The `git maintenance start` command uses
334the `schtasks` command to submit tasks to this system. You can inspect
335all background tasks using the Task Scheduler application. The tasks
336added by Git have names of the form `Git Maintenance (<frequency>)`.
337The Task Scheduler GUI has ways to inspect these tasks, but you can also
338export the tasks to XML files and view the details there.
339
340Note that since Git is a console application, these background tasks
341create a console window visible to the current user. This can be changed
342manually by selecting the "Run whether user is logged in or not" option
343in Task Scheduler. This change requires a password input, which is why
344`git maintenance start` does not select it by default.
345
346If you want to customize the background tasks, please rename the tasks
347so future calls to `git maintenance (start|stop)` do not overwrite your
348custom tasks.
349
0016b618 350
2057d750
DS
351GIT
352---
353Part of the linkgit:git[1] suite