logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

git-gc.1 (17237B)


  1. '\" t
  2. .\" Title: git-gc
  3. .\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
  4. .\" Generator: DocBook XSL Stylesheets v1.79.2 <http://docbook.sf.net/>
  5. .\" Date: 2025-03-14
  6. .\" Manual: Git Manual
  7. .\" Source: Git 2.49.0
  8. .\" Language: English
  9. .\"
  10. .TH "GIT\-GC" "1" "2025-03-14" "Git 2\&.49\&.0" "Git Manual"
  11. .\" -----------------------------------------------------------------
  12. .\" * Define some portability stuff
  13. .\" -----------------------------------------------------------------
  14. .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  15. .\" http://bugs.debian.org/507673
  16. .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
  17. .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  18. .ie \n(.g .ds Aq \(aq
  19. .el .ds Aq '
  20. .\" -----------------------------------------------------------------
  21. .\" * set default formatting
  22. .\" -----------------------------------------------------------------
  23. .\" disable hyphenation
  24. .nh
  25. .\" disable justification (adjust text to left margin only)
  26. .ad l
  27. .\" -----------------------------------------------------------------
  28. .\" * MAIN CONTENT STARTS HERE *
  29. .\" -----------------------------------------------------------------
  30. .SH "NAME"
  31. git-gc \- Cleanup unnecessary files and optimize the local repository
  32. .SH "SYNOPSIS"
  33. .sp
  34. .nf
  35. \fIgit gc\fR [\-\-aggressive] [\-\-auto] [\-\-[no\-]detach] [\-\-quiet] [\-\-prune=<date> | \-\-no\-prune] [\-\-force] [\-\-keep\-largest\-pack]
  36. .fi
  37. .SH "DESCRIPTION"
  38. .sp
  39. Runs a number of housekeeping tasks within the current repository, such as compressing file revisions (to reduce disk space and increase performance), removing unreachable objects which may have been created from prior invocations of \fIgit add\fR, packing refs, pruning reflog, rerere metadata or stale working trees\&. May also update ancillary indexes such as the commit\-graph\&.
  40. .sp
  41. When common porcelain operations that create objects are run, they will check whether the repository has grown substantially since the last maintenance, and if so run \fBgit\fR \fBgc\fR automatically\&. See \fBgc\&.auto\fR below for how to disable this behavior\&.
  42. .sp
  43. Running \fBgit\fR \fBgc\fR manually should only be needed when adding objects to a repository without regularly running such porcelain commands, to do a one\-off repository optimization, or e\&.g\&. to clean up a suboptimal mass\-import\&. See the "PACKFILE OPTIMIZATION" section in \fBgit-fast-import\fR(1) for more details on the import case\&.
  44. .SH "OPTIONS"
  45. .PP
  46. \-\-aggressive
  47. .RS 4
  48. Usually
  49. \fIgit gc\fR
  50. runs very quickly while providing good disk space utilization and performance\&. This option will cause
  51. \fIgit gc\fR
  52. to more aggressively optimize the repository at the expense of taking much more time\&. The effects of this optimization are mostly persistent\&. See the "AGGRESSIVE" section below for details\&.
  53. .RE
  54. .PP
  55. \-\-auto
  56. .RS 4
  57. With this option,
  58. \fIgit gc\fR
  59. checks whether any housekeeping is required; if not, it exits without performing any work\&.
  60. .sp
  61. See the
  62. \fBgc\&.auto\fR
  63. option in the "CONFIGURATION" section below for how this heuristic works\&.
  64. .sp
  65. Once housekeeping is triggered by exceeding the limits of configuration options such as
  66. \fBgc\&.auto\fR
  67. and
  68. \fBgc\&.autoPackLimit\fR, all other housekeeping tasks (e\&.g\&. rerere, working trees, reflog\&...\:) will be performed as well\&.
  69. .RE
  70. .PP
  71. \-\-[no\-]detach
  72. .RS 4
  73. Run in the background if the system supports it\&. This option overrides the
  74. \fBgc\&.autoDetach\fR
  75. config\&.
  76. .RE
  77. .PP
  78. \-\-[no\-]cruft
  79. .RS 4
  80. When expiring unreachable objects, pack them separately into a cruft pack instead of storing them as loose objects\&.
  81. \fB\-\-cruft\fR
  82. is on by default\&.
  83. .RE
  84. .PP
  85. \-\-max\-cruft\-size=<n>
  86. .RS 4
  87. When packing unreachable objects into a cruft pack, limit the size of new cruft packs to be at most
  88. \fI<n>\fR
  89. bytes\&. Overrides any value specified via the
  90. \fBgc\&.maxCruftSize\fR
  91. configuration\&. See the
  92. \fB\-\-max\-cruft\-size\fR
  93. option of
  94. \fBgit-repack\fR(1)
  95. for more\&.
  96. .RE
  97. .PP
  98. \-\-expire\-to=<dir>
  99. .RS 4
  100. When packing unreachable objects into a cruft pack, write a cruft pack containing pruned objects (if any) to the directory
  101. \fI<dir>\fR\&. This option only has an effect when used together with
  102. \fB\-\-cruft\fR\&. See the
  103. \fB\-\-expire\-to\fR
  104. option of
  105. \fBgit-repack\fR(1)
  106. for more information\&.
  107. .RE
  108. .PP
  109. \-\-prune=<date>
  110. .RS 4
  111. Prune loose objects older than date (default is 2 weeks ago, overridable by the config variable
  112. \fBgc\&.pruneExpire\fR)\&. \-\-prune=now prunes loose objects regardless of their age and increases the risk of corruption if another process is writing to the repository concurrently; see "NOTES" below\&. \-\-prune is on by default\&.
  113. .RE
  114. .PP
  115. \-\-no\-prune
  116. .RS 4
  117. Do not prune any loose objects\&.
  118. .RE
  119. .PP
  120. \-\-quiet
  121. .RS 4
  122. Suppress all progress reports\&.
  123. .RE
  124. .PP
  125. \-\-force
  126. .RS 4
  127. Force
  128. \fBgit\fR
  129. \fBgc\fR
  130. to run even if there may be another
  131. \fBgit\fR
  132. \fBgc\fR
  133. instance running on this repository\&.
  134. .RE
  135. .PP
  136. \-\-keep\-largest\-pack
  137. .RS 4
  138. All packs except the largest non\-cruft pack, any packs marked with a \&.\fBkeep\fR
  139. file, and any cruft pack(s) are consolidated into a single pack\&. When this option is used,
  140. \fBgc\&.bigPackThreshold\fR
  141. is ignored\&.
  142. .RE
  143. .SH "AGGRESSIVE"
  144. .sp
  145. When the \fB\-\-aggressive\fR option is supplied, \fBgit-repack\fR(1) will be invoked with the \fB\-f\fR flag, which in turn will pass \fB\-\-no\-reuse\-delta\fR to \fBgit-pack-objects\fR(1)\&. This will throw away any existing deltas and re\-compute them, at the expense of spending much more time on the repacking\&.
  146. .sp
  147. The effects of this are mostly persistent, e\&.g\&. when packs and loose objects are coalesced into one another pack the existing deltas in that pack might get re\-used, but there are also various cases where we might pick a sub\-optimal delta from a newer pack instead\&.
  148. .sp
  149. Furthermore, supplying \fB\-\-aggressive\fR will tweak the \fB\-\-depth\fR and \fB\-\-window\fR options passed to \fBgit-repack\fR(1)\&. See the \fBgc\&.aggressiveDepth\fR and \fBgc\&.aggressiveWindow\fR settings below\&. By using a larger window size we\(cqre more likely to find more optimal deltas\&.
  150. .sp
  151. It\(cqs probably not worth it to use this option on a given repository without running tailored performance benchmarks on it\&. It takes a lot more time, and the resulting space/delta optimization may or may not be worth it\&. Not using this at all is the right trade\-off for most users and their repositories\&.
  152. .SH "CONFIGURATION"
  153. .sp
  154. Everything below this line in this section is selectively included from the \fBgit-config\fR(1) documentation\&. The content is the same as what\(cqs found there:
  155. .PP
  156. gc\&.aggressiveDepth
  157. .RS 4
  158. The depth parameter used in the delta compression algorithm used by
  159. \fIgit gc \-\-aggressive\fR\&. This defaults to 50, which is the default for the
  160. \fB\-\-depth\fR
  161. option when
  162. \fB\-\-aggressive\fR
  163. isn\(cqt in use\&.
  164. .sp
  165. See the documentation for the
  166. \fB\-\-depth\fR
  167. option in
  168. \fBgit-repack\fR(1)
  169. for more details\&.
  170. .RE
  171. .PP
  172. gc\&.aggressiveWindow
  173. .RS 4
  174. The window size parameter used in the delta compression algorithm used by
  175. \fIgit gc \-\-aggressive\fR\&. This defaults to 250, which is a much more aggressive window size than the default
  176. \fB\-\-window\fR
  177. of 10\&.
  178. .sp
  179. See the documentation for the
  180. \fB\-\-window\fR
  181. option in
  182. \fBgit-repack\fR(1)
  183. for more details\&.
  184. .RE
  185. .PP
  186. gc\&.auto
  187. .RS 4
  188. When there are approximately more than this many loose objects in the repository,
  189. \fBgit\fR
  190. \fBgc\fR
  191. \fB\-\-auto\fR
  192. will pack them\&. Some Porcelain commands use this command to perform a light\-weight garbage collection from time to time\&. The default value is 6700\&.
  193. .sp
  194. Setting this to 0 disables not only automatic packing based on the number of loose objects, but also any other heuristic
  195. \fBgit\fR
  196. \fBgc\fR
  197. \fB\-\-auto\fR
  198. will otherwise use to determine if there\(cqs work to do, such as
  199. \fBgc\&.autoPackLimit\fR\&.
  200. .RE
  201. .PP
  202. gc\&.autoPackLimit
  203. .RS 4
  204. When there are more than this many packs that are not marked with *\&.\fBkeep\fR
  205. file in the repository,
  206. \fBgit\fR
  207. \fBgc\fR
  208. \fB\-\-auto\fR
  209. consolidates them into one larger pack\&. The default value is 50\&. Setting this to 0 disables it\&. Setting
  210. \fBgc\&.auto\fR
  211. to 0 will also disable this\&.
  212. .sp
  213. See the
  214. \fBgc\&.bigPackThreshold\fR
  215. configuration variable below\&. When in use, it\(cqll affect how the auto pack limit works\&.
  216. .RE
  217. .PP
  218. gc\&.autoDetach
  219. .RS 4
  220. Make
  221. \fBgit\fR
  222. \fBgc\fR
  223. \fB\-\-auto\fR
  224. return immediately and run in the background if the system supports it\&. Default is true\&. This config variable acts as a fallback in case
  225. \fBmaintenance\&.autoDetach\fR
  226. is not set\&.
  227. .RE
  228. .PP
  229. gc\&.bigPackThreshold
  230. .RS 4
  231. If non\-zero, all non\-cruft packs larger than this limit are kept when
  232. \fBgit\fR
  233. \fBgc\fR
  234. is run\&. This is very similar to
  235. \fB\-\-keep\-largest\-pack\fR
  236. except that all non\-cruft packs that meet the threshold are kept, not just the largest pack\&. Defaults to zero\&. Common unit suffixes of
  237. \fIk\fR,
  238. \fIm\fR, or
  239. \fIg\fR
  240. are supported\&.
  241. .sp
  242. Note that if the number of kept packs is more than gc\&.autoPackLimit, this configuration variable is ignored, all packs except the base pack will be repacked\&. After this the number of packs should go below gc\&.autoPackLimit and gc\&.bigPackThreshold should be respected again\&.
  243. .sp
  244. If the amount of memory estimated for
  245. \fBgit\fR
  246. \fBrepack\fR
  247. to run smoothly is not available and
  248. \fBgc\&.bigPackThreshold\fR
  249. is not set, the largest pack will also be excluded (this is the equivalent of running
  250. \fBgit\fR
  251. \fBgc\fR
  252. with
  253. \fB\-\-keep\-largest\-pack\fR)\&.
  254. .RE
  255. .PP
  256. gc\&.writeCommitGraph
  257. .RS 4
  258. If true, then gc will rewrite the commit\-graph file when
  259. \fBgit-gc\fR(1)
  260. is run\&. When using
  261. \fBgit\fR
  262. \fBgc\fR
  263. \fB\-\-auto\fR
  264. the commit\-graph will be updated if housekeeping is required\&. Default is true\&. See
  265. \fBgit-commit-graph\fR(1)
  266. for details\&.
  267. .RE
  268. .PP
  269. gc\&.logExpiry
  270. .RS 4
  271. If the file gc\&.log exists, then
  272. \fBgit\fR
  273. \fBgc\fR
  274. \fB\-\-auto\fR
  275. will print its content and exit with status zero instead of running unless that file is more than
  276. \fIgc\&.logExpiry\fR
  277. old\&. Default is "1\&.day"\&. See
  278. \fBgc\&.pruneExpire\fR
  279. for more ways to specify its value\&.
  280. .RE
  281. .PP
  282. gc\&.packRefs
  283. .RS 4
  284. Running
  285. \fBgit\fR
  286. \fBpack\-refs\fR
  287. in a repository renders it unclonable by Git versions prior to 1\&.5\&.1\&.2 over dumb transports such as HTTP\&. This variable determines whether
  288. \fIgit gc\fR
  289. runs
  290. \fBgit\fR
  291. \fBpack\-refs\fR\&. This can be set to
  292. \fBnotbare\fR
  293. to enable it within all non\-bare repos or it can be set to a boolean value\&. The default is
  294. \fBtrue\fR\&.
  295. .RE
  296. .PP
  297. gc\&.cruftPacks
  298. .RS 4
  299. Store unreachable objects in a cruft pack (see
  300. \fBgit-repack\fR(1)) instead of as loose objects\&. The default is
  301. \fBtrue\fR\&.
  302. .RE
  303. .PP
  304. gc\&.maxCruftSize
  305. .RS 4
  306. Limit the size of new cruft packs when repacking\&. When specified in addition to
  307. \fB\-\-max\-cruft\-size\fR, the command line option takes priority\&. See the
  308. \fB\-\-max\-cruft\-size\fR
  309. option of
  310. \fBgit-repack\fR(1)\&.
  311. .RE
  312. .PP
  313. gc\&.pruneExpire
  314. .RS 4
  315. When
  316. \fIgit gc\fR
  317. is run, it will call
  318. \fIprune \-\-expire 2\&.weeks\&.ago\fR
  319. (and
  320. \fIrepack \-\-cruft \-\-cruft\-expiration 2\&.weeks\&.ago\fR
  321. if using cruft packs via
  322. \fBgc\&.cruftPacks\fR
  323. or
  324. \fB\-\-cruft\fR)\&. Override the grace period with this config variable\&. The value "now" may be used to disable this grace period and always prune unreachable objects immediately, or "never" may be used to suppress pruning\&. This feature helps prevent corruption when
  325. \fIgit gc\fR
  326. runs concurrently with another process writing to the repository; see the "NOTES" section of
  327. \fBgit-gc\fR(1)\&.
  328. .RE
  329. .PP
  330. gc\&.worktreePruneExpire
  331. .RS 4
  332. When
  333. \fIgit gc\fR
  334. is run, it calls
  335. \fIgit worktree prune \-\-expire 3\&.months\&.ago\fR\&. This config variable can be used to set a different grace period\&. The value "now" may be used to disable the grace period and prune
  336. \fB$GIT_DIR/worktrees\fR
  337. immediately, or "never" may be used to suppress pruning\&.
  338. .RE
  339. .PP
  340. gc\&.reflogExpire, gc\&.<pattern>\&.reflogExpire
  341. .RS 4
  342. \fIgit reflog expire\fR
  343. removes reflog entries older than this time; defaults to 90 days\&. The value "now" expires all entries immediately, and "never" suppresses expiration altogether\&. With "<pattern>" (e\&.g\&. "refs/stash") in the middle the setting applies only to the refs that match the <pattern>\&.
  344. .RE
  345. .PP
  346. gc\&.reflogExpireUnreachable, gc\&.<pattern>\&.reflogExpireUnreachable
  347. .RS 4
  348. \fIgit reflog expire\fR
  349. removes reflog entries older than this time and are not reachable from the current tip; defaults to 30 days\&. The value "now" expires all entries immediately, and "never" suppresses expiration altogether\&. With "<pattern>" (e\&.g\&. "refs/stash") in the middle, the setting applies only to the refs that match the <pattern>\&.
  350. .sp
  351. These types of entries are generally created as a result of using
  352. \fBgit\fR
  353. \fBcommit\fR
  354. \fB\-\-amend\fR
  355. or
  356. \fBgit\fR
  357. \fBrebase\fR
  358. and are the commits prior to the amend or rebase occurring\&. Since these changes are not part of the current project most users will want to expire them sooner, which is why the default is more aggressive than
  359. \fBgc\&.reflogExpire\fR\&.
  360. .RE
  361. .PP
  362. gc\&.recentObjectsHook
  363. .RS 4
  364. When considering whether or not to remove an object (either when generating a cruft pack or storing unreachable objects as loose), use the shell to execute the specified command(s)\&. Interpret their output as object IDs which Git will consider as "recent", regardless of their age\&. By treating their mtimes as "now", any objects (and their descendants) mentioned in the output will be kept regardless of their true age\&.
  365. .sp
  366. Output must contain exactly one hex object ID per line, and nothing else\&. Objects which cannot be found in the repository are ignored\&. Multiple hooks are supported, but all must exit successfully, else the operation (either generating a cruft pack or unpacking unreachable objects) will be halted\&.
  367. .RE
  368. .PP
  369. gc\&.repackFilter
  370. .RS 4
  371. When repacking, use the specified filter to move certain objects into a separate packfile\&. See the
  372. \fB\-\-filter=\fR\fI<filter\-spec>\fR
  373. option of
  374. \fBgit-repack\fR(1)\&.
  375. .RE
  376. .PP
  377. gc\&.repackFilterTo
  378. .RS 4
  379. When repacking and using a filter, see
  380. \fBgc\&.repackFilter\fR, the specified location will be used to create the packfile containing the filtered out objects\&.
  381. \fBWARNING:\fR
  382. The specified location should be accessible, using for example the Git alternates mechanism, otherwise the repo could be considered corrupt by Git as it might not be able to access the objects in that packfile\&. See the
  383. \fB\-\-filter\-to=\fR\fI<dir>\fR
  384. option of
  385. \fBgit-repack\fR(1)
  386. and the
  387. \fBobjects/info/alternates\fR
  388. section of
  389. \fBgitrepository-layout\fR(5)\&.
  390. .RE
  391. .PP
  392. gc\&.rerereResolved
  393. .RS 4
  394. Records of conflicted merge you resolved earlier are kept for this many days when
  395. \fIgit rerere gc\fR
  396. is run\&. You can also use more human\-readable "1\&.month\&.ago", etc\&. The default is 60 days\&. See
  397. \fBgit-rerere\fR(1)\&.
  398. .RE
  399. .PP
  400. gc\&.rerereUnresolved
  401. .RS 4
  402. Records of conflicted merge you have not resolved are kept for this many days when
  403. \fIgit rerere gc\fR
  404. is run\&. You can also use more human\-readable "1\&.month\&.ago", etc\&. The default is 15 days\&. See
  405. \fBgit-rerere\fR(1)\&.
  406. .RE
  407. .SH "NOTES"
  408. .sp
  409. \fIgit gc\fR tries very hard not to delete objects that are referenced anywhere in your repository\&. In particular, it will keep not only objects referenced by your current set of branches and tags, but also objects referenced by the index, remote\-tracking branches, reflogs (which may reference commits in branches that were later amended or rewound), and anything else in the refs/* namespace\&. Note that a note (of the kind created by \fIgit notes\fR) attached to an object does not contribute in keeping the object alive\&. If you are expecting some objects to be deleted and they aren\(cqt, check all of those locations and decide whether it makes sense in your case to remove those references\&.
  410. .sp
  411. On the other hand, when \fIgit gc\fR runs concurrently with another process, there is a risk of it deleting an object that the other process is using but hasn\(cqt created a reference to\&. This may just cause the other process to fail or may corrupt the repository if the other process later adds a reference to the deleted object\&. Git has two features that significantly mitigate this problem:
  412. .sp
  413. .RS 4
  414. .ie n \{\
  415. \h'-04' 1.\h'+01'\c
  416. .\}
  417. .el \{\
  418. .sp -1
  419. .IP " 1." 4.2
  420. .\}
  421. Any object with modification time newer than the
  422. \fB\-\-prune\fR
  423. date is kept, along with everything reachable from it\&.
  424. .RE
  425. .sp
  426. .RS 4
  427. .ie n \{\
  428. \h'-04' 2.\h'+01'\c
  429. .\}
  430. .el \{\
  431. .sp -1
  432. .IP " 2." 4.2
  433. .\}
  434. Most operations that add an object to the database update the modification time of the object if it is already present so that #1 applies\&.
  435. .RE
  436. .sp
  437. However, these features fall short of a complete solution, so users who run commands concurrently have to live with some risk of corruption (which seems to be low in practice)\&.
  438. .SH "HOOKS"
  439. .sp
  440. The \fIgit gc \-\-auto\fR command will run the \fIpre\-auto\-gc\fR hook\&. See \fBgithooks\fR(5) for more information\&.
  441. .SH "SEE ALSO"
  442. .sp
  443. \fBgit-prune\fR(1) \fBgit-reflog\fR(1) \fBgit-repack\fR(1) \fBgit-rerere\fR(1)
  444. .SH "GIT"
  445. .sp
  446. Part of the \fBgit\fR(1) suite