diff options
author | Junio C Hamano <junkio@cox.net> | 2006-02-16 11:57:18 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-02-17 02:11:38 -0800 |
commit | cec2be76d9789b11c7f955b62dcad4b1050202af (patch) | |
tree | 514de6323dd92ab4d9e4134ff686ce8db89d0b5d /Documentation/git-repack.txt | |
parent | ca5381d43e8595f592d8d7ecfc9bb0bfa5e52f6d (diff) | |
download | git-cec2be76d9789b11c7f955b62dcad4b1050202af.tar.gz |
git-repack: allow passing a couple of flags to pack-objects.
A new flag -q makes underlying pack-objects less chatty.
A new flag -f forces delta to be recomputed from scratch.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/git-repack.txt')
-rw-r--r-- | Documentation/git-repack.txt | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Documentation/git-repack.txt b/Documentation/git-repack.txt index 9060fe8897..6c0f792dad 100644 --- a/Documentation/git-repack.txt +++ b/Documentation/git-repack.txt @@ -9,7 +9,7 @@ objects into pack files. SYNOPSIS -------- -'git-repack' [-a] [-d] [-l] [-n] +'git-repack' [-a] [-d] [-f] [-l] [-n] [-q] DESCRIPTION ----------- @@ -43,6 +43,14 @@ OPTIONS Pass the `--local` option to `git pack-objects`, see gitlink:git-pack-objects[1]. +-f:: + Pass the `--no-reuse-delta` option to `git pack-objects`, see + gitlink:git-pack-objects[1]. + +-q:: + Pass the `-q` option to `git pack-objects`, see + gitlink:git-pack-objects[1]. + -n:: Do not update the server information with `git update-server-info`. |