2005-07-09 01:51:55 +02:00
|
|
|
git-hash-object(1)
|
|
|
|
==================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2007-01-19 00:53:37 +01:00
|
|
|
git-hash-object - Compute object ID and optionally creates a blob from a file
|
2005-07-09 01:51:55 +02:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2008-06-30 08:09:04 +02:00
|
|
|
'git hash-object' [-t <type>] [-w] [--stdin | --stdin-paths] [--] <file>...
|
2005-07-09 01:51:55 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
Computes the object ID value for an object with specified type
|
|
|
|
with the contents of the named file (which can be outside of the
|
|
|
|
work tree), and optionally writes the resulting object into the
|
|
|
|
object database. Reports its object ID to its standard output.
|
2008-07-03 07:41:41 +02:00
|
|
|
This is used by 'git-cvsimport' to update the index
|
2005-07-09 01:51:55 +02:00
|
|
|
without modifying files in the work tree. When <type> is not
|
2007-06-07 09:04:01 +02:00
|
|
|
specified, it defaults to "blob".
|
2005-07-09 01:51:55 +02:00
|
|
|
|
2005-08-05 17:05:02 +02:00
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
|
|
|
|
-t <type>::
|
|
|
|
Specify the type (default: "blob").
|
|
|
|
|
|
|
|
-w::
|
|
|
|
Actually write the object into the object database.
|
2005-07-09 01:51:55 +02:00
|
|
|
|
2005-12-10 23:25:24 +01:00
|
|
|
--stdin::
|
|
|
|
Read the object from standard input instead of from a file.
|
|
|
|
|
2008-05-23 16:19:38 +02:00
|
|
|
--stdin-paths::
|
|
|
|
Read file names from stdin instead of from the command-line.
|
|
|
|
|
2005-07-09 01:51:55 +02:00
|
|
|
Author
|
|
|
|
------
|
2008-07-21 21:14:42 +02:00
|
|
|
Written by Junio C Hamano <gitster@pobox.com>
|
2005-07-09 01:51:55 +02:00
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|