summaryrefslogtreecommitdiffstats
path: root/git-pack-objects.txt
diff options
context:
space:
mode:
authorJunio C Hamano <junio@hera.kernel.org>2009-11-24 10:54:16 +0000
committerJunio C Hamano <junio@hera.kernel.org>2009-11-24 10:54:16 +0000
commit5706e0b5cf3d63b8c655239151d8e2ab308ffa4a (patch)
tree94782861a9c88207c54278ecdff7caf59ec4f816 /git-pack-objects.txt
parent9df0c66308c7d858d04f0ac7916bc4efe87b4486 (diff)
downloadgit-htmldocs-5706e0b5cf3d63b8c655239151d8e2ab308ffa4a.tar.gz
Autogenerated HTML docs for v1.6.6-rc0-50-gaf06e
Diffstat (limited to 'git-pack-objects.txt')
-rw-r--r--git-pack-objects.txt12
1 files changed, 9 insertions, 3 deletions
diff --git a/git-pack-objects.txt b/git-pack-objects.txt
index 2e4992970..f54d433d3 100644
--- a/git-pack-objects.txt
+++ b/git-pack-objects.txt
@@ -9,8 +9,9 @@ git-pack-objects - Create a packed archive of objects
SYNOPSIS
--------
[verse]
-'git pack-objects' [-q] [--no-reuse-delta] [--delta-base-offset] [--non-empty]
- [--local] [--incremental] [--window=N] [--depth=N] [--all-progress]
+'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]
[--keep-true-parents] < object-list
@@ -137,7 +138,7 @@ base-name::
--all-progress::
When --stdout is specified then progress report is
- displayed during the object count and deltification phases
+ displayed during the object count and compression phases
but inhibited during the write-out phase. The reason is
that in some cases the output stream is directly linked
to another command which may wish to display progress
@@ -146,6 +147,11 @@ base-name::
report for the write-out phase as well even if --stdout is
used.
+--all-progress-implied::
+ This is used to imply --all-progress whenever progress display
+ is activated. Unlike --all-progress this flag doesn't actually
+ force any progress display by itself.
+
-q::
This flag makes the command not to report its progress
on the standard error stream.