diff options
author | Nikolai Weibull <mailing-lists.git@rawuncut.elitemail.org> | 2005-12-09 00:28:05 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-12-08 15:50:13 -0800 |
commit | 63ae26f87ae1d3a95a8ecc2fc761b7a7987e3ce5 (patch) | |
tree | 07813bb81e58f0446375f2bd7f44cd65291aa960 /Documentation | |
parent | bcaf60b25b6f62049f195e253d6a974b42442066 (diff) | |
download | git-63ae26f87ae1d3a95a8ecc2fc761b7a7987e3ce5.tar.gz git-63ae26f87ae1d3a95a8ecc2fc761b7a7987e3ce5.tar.xz |
Document the --non-empty command-line option to git-pack-objects.
This provides (minimal) documentation for the --non-empty command-line
option to the pack-objects command.
Signed-off-by: Nikolai Weibull <nikolai@bitwi.se>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-pack-objects.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Documentation/git-pack-objects.txt b/Documentation/git-pack-objects.txt index d1e93dbb3..009ec5ab3 100644 --- a/Documentation/git-pack-objects.txt +++ b/Documentation/git-pack-objects.txt @@ -8,7 +8,7 @@ git-pack-objects - Create a packed archive of objects. SYNOPSIS -------- -'git-pack-objects' [--local] [--incremental] [--window=N] [--depth=N] {--stdout | base-name} < object-list +'git-pack-objects' [--non-empty] [--local] [--incremental] [--window=N] [--depth=N] {--stdout | base-name} < object-list DESCRIPTION @@ -70,6 +70,10 @@ base-name:: that are packed and not in the local object store (i.e. borrowed from an alternate). +--non-empty:: + Only create a packed archive if it would contain at + least one object. + Author ------ Written by Linus Torvalds <torvalds@osdl.org> |