Documentation / git-hash-object.txton commit [PATCH] Documentation: git-peek-remote. (508e67a)
   1git-hash-object(1)
   2==================
   3v0.1, May 2005
   4
   5NAME
   6----
   7git-hash-object - Computes object ID and optionally creates a blob from a file.
   8
   9
  10SYNOPSIS
  11--------
  12'git-hash-object' [-t <type>] [-w] <any-file-on-the-filesystem>
  13
  14DESCRIPTION
  15-----------
  16Computes the object ID value for an object with specified type
  17with the contents of the named file (which can be outside of the
  18work tree), and optionally writes the resulting object into the
  19object database.  Reports its object ID to its standard output.
  20This is used by "git-cvsimport-script" to update the cache
  21without modifying files in the work tree.  When <type> is not
  22specified, it defaults to "blob". 
  23
  24
  25Author
  26------
  27Written by Junio C Hamano <junkio@cox.net>
  28
  29Documentation
  30--------------
  31Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
  32
  33GIT
  34---
  35Part of the link:git.html[git] suite
  36