2005-07-14 11:08:05 +04:00
|
|
|
git-unpack-objects(1)
|
|
|
|
=====================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2006-03-09 19:24:50 +03:00
|
|
|
git-unpack-objects - Unpack objects from a packed archive
|
2005-07-14 11:08:05 +04:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2006-09-04 09:55:54 +04:00
|
|
|
'git-unpack-objects' [-n] [-q] [-r] <pack-file
|
2005-07-14 11:08:05 +04:00
|
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2006-05-05 23:05:36 +04:00
|
|
|
Read a packed archive (.pack) from the standard input, expanding
|
|
|
|
the objects contained within and writing them into the repository in
|
|
|
|
"loose" (one object per file) format.
|
|
|
|
|
|
|
|
Objects that already exist in the repository will *not* be unpacked
|
|
|
|
from the pack-file. Therefore, nothing will be unpacked if you use
|
|
|
|
this command on a pack-file that exists within the target repository.
|
|
|
|
|
|
|
|
Please see the `git-repack` documentation for options to generate
|
|
|
|
new packs and replace existing ones.
|
2005-07-14 11:08:05 +04:00
|
|
|
|
2005-08-12 12:45:52 +04:00
|
|
|
OPTIONS
|
|
|
|
-------
|
2005-11-15 02:20:01 +03:00
|
|
|
-n::
|
2007-06-07 01:23:16 +04:00
|
|
|
Dry run. Check the pack file without actually unpacking
|
|
|
|
the objects.
|
2005-11-15 02:20:01 +03:00
|
|
|
|
2005-08-12 12:45:52 +04:00
|
|
|
-q::
|
|
|
|
The command usually shows percentage progress. This
|
|
|
|
flag suppresses it.
|
|
|
|
|
2006-09-04 09:55:54 +04:00
|
|
|
-r::
|
|
|
|
When unpacking a corrupt packfile, the command dies at
|
|
|
|
the first corruption. This flag tells it to keep going
|
2006-09-13 23:59:20 +04:00
|
|
|
and make the best effort to recover as many objects as
|
2006-09-04 09:55:54 +04:00
|
|
|
possible.
|
|
|
|
|
2005-07-14 11:08:05 +04:00
|
|
|
|
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Linus Torvalds <torvalds@osdl.org>
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
-------------
|
|
|
|
Documentation by Junio C Hamano
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2007-12-29 09:20:38 +03:00
|
|
|
Part of the linkgit:git[7] suite
|