2005-07-08 23:51:55 +00:00
|
|
|
git-hash-object(1)
|
|
|
|
==================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2007-01-18 23:53:37 +00:00
|
|
|
git-hash-object - Compute object ID and optionally creates a blob from a file
|
2005-07-08 23:51:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2008-08-03 14:36:19 +00:00
|
|
|
[verse]
|
2008-08-03 14:36:22 +00:00
|
|
|
'git hash-object' [-t <type>] [-w] [--path=<file>|--no-filters] [--stdin] [--] <file>...
|
2010-03-03 20:10:21 +00:00
|
|
|
'git hash-object' [-t <type>] [-w] --stdin-paths [--no-filters] < <list-of-paths>
|
2005-07-08 23:51:55 +00: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.
|
2010-01-09 23:33:00 +00:00
|
|
|
This is used by 'git cvsimport' to update the index
|
2005-07-08 23:51:55 +00:00
|
|
|
without modifying files in the work tree. When <type> is not
|
2007-06-07 07:04:01 +00:00
|
|
|
specified, it defaults to "blob".
|
2005-07-08 23:51:55 +00:00
|
|
|
|
2005-08-05 15:05:02 +00:00
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
|
|
|
|
-t <type>::
|
|
|
|
Specify the type (default: "blob").
|
|
|
|
|
|
|
|
-w::
|
|
|
|
Actually write the object into the object database.
|
2005-07-08 23:51:55 +00:00
|
|
|
|
2005-12-10 22:25:24 +00:00
|
|
|
--stdin::
|
|
|
|
Read the object from standard input instead of from a file.
|
|
|
|
|
2008-05-23 14:19:38 +00:00
|
|
|
--stdin-paths::
|
|
|
|
Read file names from stdin instead of from the command-line.
|
|
|
|
|
2008-08-03 14:36:21 +00:00
|
|
|
--path::
|
|
|
|
Hash object as it were located at the given path. The location of
|
|
|
|
file does not directly influence on the hash value, but path is
|
2013-01-21 19:17:53 +00:00
|
|
|
used to determine what Git filters should be applied to the object
|
2008-08-03 14:36:21 +00:00
|
|
|
before it can be placed to the object database, and, as result of
|
|
|
|
applying filters, the actual blob put into the object database may
|
|
|
|
differ from the given file. This option is mainly useful for hashing
|
|
|
|
temporary files located outside of the working directory or files
|
|
|
|
read from stdin.
|
|
|
|
|
2008-08-03 14:36:22 +00:00
|
|
|
--no-filters::
|
|
|
|
Hash the contents as is, ignoring any input filter that would
|
2010-07-19 21:17:17 +00:00
|
|
|
have been chosen by the attributes mechanism, including the end-of-line
|
2008-08-03 14:36:22 +00:00
|
|
|
conversion. If the file is read from standard input then this
|
|
|
|
is always implied, unless the --path option is given.
|
|
|
|
|
2005-07-08 23:51:55 +00:00
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 07:07:32 +00:00
|
|
|
Part of the linkgit:git[1] suite
|