2005-07-14 01:08:05 -06:00
|
|
|
git-unpack-objects(1)
|
|
|
|
=====================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2006-03-09 09:24:50 -07:00
|
|
|
git-unpack-objects - Unpack objects from a packed archive
|
2005-07-14 01:08:05 -06:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2006-09-03 23:55:54 -06:00
|
|
|
'git-unpack-objects' [-n] [-q] [-r] <pack-file
|
2005-07-14 01:08:05 -06:00
|
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2006-05-05 13:05:36 -06: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 01:08:05 -06:00
|
|
|
|
2005-08-12 02:45:52 -06:00
|
|
|
OPTIONS
|
|
|
|
-------
|
2005-11-14 16:20:01 -07:00
|
|
|
-n::
|
|
|
|
Only list the objects that would be unpacked, don't actually unpack
|
|
|
|
them.
|
|
|
|
|
2005-08-12 02:45:52 -06:00
|
|
|
-q::
|
|
|
|
The command usually shows percentage progress. This
|
|
|
|
flag suppresses it.
|
|
|
|
|
2006-09-03 23:55:54 -06:00
|
|
|
-r::
|
|
|
|
When unpacking a corrupt packfile, the command dies at
|
|
|
|
the first corruption. This flag tells it to keep going
|
2006-09-13 13:59:20 -06:00
|
|
|
and make the best effort to recover as many objects as
|
2006-09-03 23:55:54 -06:00
|
|
|
possible.
|
|
|
|
|
2005-07-14 01:08:05 -06:00
|
|
|
|
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Linus Torvalds <torvalds@osdl.org>
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
-------------
|
|
|
|
Documentation by Junio C Hamano
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2005-09-19 04:10:51 -06:00
|
|
|
Part of the gitlink:git[7] suite
|
2005-07-14 01:08:05 -06:00
|
|
|
|