X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=Documentation%2Fgit-repack.txt;h=951622774af70e92590740c27fe021223f29442a;hb=16cee38ae2bff93a4e4c512550fb4ccac035a3a1;hp=2e95e111f36612259f32f45392cd466fa9c4bf79;hpb=c1067050ce58b5b39f528fe634732da858664603;p=git.git diff --git a/Documentation/git-repack.txt b/Documentation/git-repack.txt index 2e95e111..95162277 100644 --- a/Documentation/git-repack.txt +++ b/Documentation/git-repack.txt @@ -1,6 +1,5 @@ git-repack(1) ============= -v0.99.5, August 2005 NAME ---- @@ -10,7 +9,7 @@ objects into pack files. SYNOPSIS -------- -'git-repack' [-a] [-d] +'git-repack' [-a] [-d] [-f] [-l] [-n] [-q] DESCRIPTION ----------- @@ -39,7 +38,23 @@ OPTIONS -d:: After packing, if the newly created packs make some existing packs redundant, remove the redundant packs. + Also runs gitlink:git-prune-packed[1]. +-l:: + 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`. Author ------ @@ -49,9 +64,10 @@ Documentation -------------- Documentation by Ryan Anderson -See-Also +See Also -------- -git-pack-objects(1) git-prune-packed(1) +gitlink:git-pack-objects[1] +gitlink:git-prune-packed[1] GIT ---