Junio C Hamano | 5f40520 | 2005-07-14 00:08:05 -0700 | [diff] [blame] | 1 | git-unpack-objects(1) |
| 2 | ===================== |
Junio C Hamano | 5f40520 | 2005-07-14 00:08:05 -0700 | [diff] [blame] | 3 | |
| 4 | NAME |
| 5 | ---- |
Fredrik Kuivinen | 7bd7f28 | 2006-03-09 17:24:50 +0100 | [diff] [blame] | 6 | git-unpack-objects - Unpack objects from a packed archive |
Junio C Hamano | 5f40520 | 2005-07-14 00:08:05 -0700 | [diff] [blame] | 7 | |
| 8 | |
| 9 | SYNOPSIS |
| 10 | -------- |
Nikolai Weibull | b2309b7 | 2005-11-15 00:20:01 +0100 | [diff] [blame] | 11 | 'git-unpack-objects' [-n] [-q] <pack-file |
Junio C Hamano | 5f40520 | 2005-07-14 00:08:05 -0700 | [diff] [blame] | 12 | |
| 13 | |
| 14 | DESCRIPTION |
| 15 | ----------- |
sean | ae0b219 | 2006-05-05 15:05:36 -0400 | [diff] [blame] | 16 | Read a packed archive (.pack) from the standard input, expanding |
| 17 | the objects contained within and writing them into the repository in |
| 18 | "loose" (one object per file) format. |
| 19 | |
| 20 | Objects that already exist in the repository will *not* be unpacked |
| 21 | from the pack-file. Therefore, nothing will be unpacked if you use |
| 22 | this command on a pack-file that exists within the target repository. |
| 23 | |
| 24 | Please see the `git-repack` documentation for options to generate |
| 25 | new packs and replace existing ones. |
Junio C Hamano | 5f40520 | 2005-07-14 00:08:05 -0700 | [diff] [blame] | 26 | |
Junio C Hamano | 87b7b84 | 2005-08-12 01:45:52 -0700 | [diff] [blame] | 27 | OPTIONS |
| 28 | ------- |
Nikolai Weibull | b2309b7 | 2005-11-15 00:20:01 +0100 | [diff] [blame] | 29 | -n:: |
| 30 | Only list the objects that would be unpacked, don't actually unpack |
| 31 | them. |
| 32 | |
Junio C Hamano | 87b7b84 | 2005-08-12 01:45:52 -0700 | [diff] [blame] | 33 | -q:: |
| 34 | The command usually shows percentage progress. This |
| 35 | flag suppresses it. |
| 36 | |
Junio C Hamano | 5f40520 | 2005-07-14 00:08:05 -0700 | [diff] [blame] | 37 | |
| 38 | Author |
| 39 | ------ |
| 40 | Written by Linus Torvalds <torvalds@osdl.org> |
| 41 | |
| 42 | Documentation |
| 43 | ------------- |
| 44 | Documentation by Junio C Hamano |
| 45 | |
| 46 | GIT |
| 47 | --- |
Sergey Vlasov | a7154e9 | 2005-09-19 14:10:51 +0400 | [diff] [blame] | 48 | Part of the gitlink:git[7] suite |
Junio C Hamano | 5f40520 | 2005-07-14 00:08:05 -0700 | [diff] [blame] | 49 | |