2005-07-14 09:08:05 +02:00
|
|
|
git-unpack-objects(1)
|
|
|
|
=====================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2006-03-09 17:24:50 +01:00
|
|
|
git-unpack-objects - Unpack objects from a packed archive
|
2005-07-14 09:08:05 +02:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2008-04-23 23:14:30 +02:00
|
|
|
'git-unpack-objects' [-n] [-q] [-r] [--strict] <pack-file
|
2005-07-14 09:08:05 +02:00
|
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2006-05-05 21:05:36 +02: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 09:08:05 +02:00
|
|
|
|
2005-08-12 10:45:52 +02:00
|
|
|
OPTIONS
|
|
|
|
-------
|
2005-11-15 00:20:01 +01:00
|
|
|
-n::
|
2007-06-06 23:23:16 +02:00
|
|
|
Dry run. Check the pack file without actually unpacking
|
|
|
|
the objects.
|
2005-11-15 00:20:01 +01:00
|
|
|
|
2005-08-12 10:45:52 +02:00
|
|
|
-q::
|
|
|
|
The command usually shows percentage progress. This
|
|
|
|
flag suppresses it.
|
|
|
|
|
2006-09-04 07:55:54 +02:00
|
|
|
-r::
|
|
|
|
When unpacking a corrupt packfile, the command dies at
|
|
|
|
the first corruption. This flag tells it to keep going
|
2006-09-13 21:59:20 +02:00
|
|
|
and make the best effort to recover as many objects as
|
2006-09-04 07:55:54 +02:00
|
|
|
possible.
|
|
|
|
|
2008-02-25 22:46:11 +01:00
|
|
|
--strict::
|
|
|
|
Don't write objects with broken content or links.
|
|
|
|
|
2005-07-14 09:08:05 +02:00
|
|
|
|
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Linus Torvalds <torvalds@osdl.org>
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
-------------
|
|
|
|
Documentation by Junio C Hamano
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|