We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f714da commit 8cbfcd2Copy full SHA for 8cbfcd2
contrib/posix/conf.d/prune.conf
@@ -29,4 +29,16 @@ default-command = "prune"
29
[prune.prune]
30
schedule = "daily"
31
schedule-lock-wait = "4h"
32
-
+# Auto remove old cache directories in the local cache
33
+cleanup-cache = true
34
+# Repacking (repository compaction)
35
+# Limited by:
36
+# - `max-unused` (higher precentage, less repacking)
37
+# - `max-repack-size` (lower size value, less repacking)
38
+#
39
+# Repacking requires up to `max-repack-size` temporary space in the repository,
40
+# ensure it has the configured size available at least before running prune.
41
+max-repack-size = "5g"
42
+# Tolerate given limit of unused data (default 5%)
43
+# A higher percentage performs less repacking which will speedup prune.
44
+max-unused = "5%"
0 commit comments