aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/git-pack-objects.txt
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-05-23 14:38:24 +0900
committerJunio C Hamano <gitster@pobox.com>2018-05-23 14:38:24 +0900
commit5a97e7be8846727597be322bf04541a2c61a2c81 (patch)
treeb5ef40f1cd93fec390a9333358370916fe9a57b9 /Documentation/git-pack-objects.txt
parentdf20b622fa36de8a65e701e094882a274b452c6a (diff)
parent58bd77b66a83e7d8bcbc4e756ab997416d246be2 (diff)
downloadgit-5a97e7be8846727597be322bf04541a2c61a2c81.tar.gz
Merge branch 'nd/pack-unreachable-objects-doc'
Doc update. * nd/pack-unreachable-objects-doc: pack-objects: validation and documentation about unreachable options
Diffstat (limited to 'Documentation/git-pack-objects.txt')
-rw-r--r--Documentation/git-pack-objects.txt13
1 files changed, 13 insertions, 0 deletions
diff --git a/Documentation/git-pack-objects.txt b/Documentation/git-pack-objects.txt
index 6bfac6b7ff..d95b472d16 100644
--- a/Documentation/git-pack-objects.txt
+++ b/Documentation/git-pack-objects.txt
@@ -276,6 +276,19 @@ Unexpected missing object will raise an error.
locally created objects [without .promisor] and objects from the
promisor remote [with .promisor].) This is used with partial clone.
+--keep-unreachable::
+ Objects unreachable from the refs in packs named with
+ --unpacked= option are added to the resulting pack, in
+ addition to the reachable objects that are not in packs marked
+ with *.keep files. This implies `--revs`.
+
+--pack-loose-unreachable::
+ Pack unreachable loose objects (and their loose counterparts
+ removed). This implies `--revs`.
+
+--unpack-unreachable::
+ Keep unreachable objects in loose form. This implies `--revs`.
+
SEE ALSO
--------
linkgit:git-rev-list[1]