summaryrefslogtreecommitdiffstats
path: root/git-pack-objects.txt
diff options
context:
space:
mode:
authorJunio C Hamano <junio@kernel.org>2010-10-22 04:12:17 +0000
committerJunio C Hamano <junio@kernel.org>2010-10-22 04:12:17 +0000
commitd2179ef025405832dff42141faed13199886b61c (patch)
treeffbde742771a380129d0223749ed086fbea39271 /git-pack-objects.txt
parent7f9fa86e7b663383dc905c5b41bedda5cedf02e6 (diff)
downloadgit-htmldocs-d2179ef025405832dff42141faed13199886b61c.tar.gz
Autogenerated HTML docs for v1.7.3.2-90-gd4c43
Diffstat (limited to 'git-pack-objects.txt')
-rw-r--r--git-pack-objects.txt16
1 files changed, 8 insertions, 8 deletions
diff --git a/git-pack-objects.txt b/git-pack-objects.txt
index 8ed09c0b3..65eff66af 100644
--- a/git-pack-objects.txt
+++ b/git-pack-objects.txt
@@ -11,8 +11,8 @@ SYNOPSIS
[verse]
'git pack-objects' [-q | --progress | --all-progress] [--all-progress-implied]
[--no-reuse-delta] [--delta-base-offset] [--non-empty]
- [--local] [--incremental] [--window=N] [--depth=N]
- [--revs [--unpacked | --all]*] [--stdout | base-name]
+ [--local] [--incremental] [--window=<n>] [--depth=<n>]
+ [--revs [--unpacked | --all]] [--stdout | base-name]
[--keep-true-parents] < object-list
@@ -82,8 +82,8 @@ base-name::
reference was included in the resulting packfile. This
can be useful to send new tags to native git clients.
---window=[N]::
---depth=[N]::
+--window=<n>::
+--depth=<n>::
These two options affect how the objects contained in
the pack are stored using delta compression. The
objects are first internally sorted by type, size and
@@ -95,10 +95,10 @@ base-name::
times to get to the necessary object.
The default value for --window is 10 and --depth is 50.
---window-memory=[N]::
+--window-memory=<n>::
This option provides an additional limit on top of `--window`;
the window size will dynamically scale down so as to not take
- up more than N bytes in memory. This is useful in
+ up more than '<n>' bytes in memory. This is useful in
repositories with a mix of large and small objects to not run
out of memory with a large window, but still be able to take
advantage of the large window for the smaller objects. The
@@ -106,7 +106,7 @@ base-name::
`--window-memory=0` makes memory usage unlimited, which is the
default.
---max-pack-size=[N]::
+--max-pack-size=<n>::
Maximum size of each output pack file. The size can be suffixed with
"k", "m", or "g". The minimum size allowed is limited to 1 MiB.
If specified, multiple packfiles may be created.
@@ -171,7 +171,7 @@ base-name::
wholesale enforcement of a different compression level on the
packed data is desired.
---compression=[N]::
+--compression=<n>::
Specifies compression level for newly-compressed data in the
generated pack. If not specified, pack compression level is
determined first by pack.compression, then by core.compression,