logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

git-hash-object.1 (3540B)


  1. '\" t
  2. .\" Title: git-hash-object
  3. .\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
  4. .\" Generator: DocBook XSL Stylesheets v1.79.2 <http://docbook.sf.net/>
  5. .\" Date: 2025-03-14
  6. .\" Manual: Git Manual
  7. .\" Source: Git 2.49.0
  8. .\" Language: English
  9. .\"
  10. .TH "GIT\-HASH\-OBJECT" "1" "2025-03-14" "Git 2\&.49\&.0" "Git Manual"
  11. .\" -----------------------------------------------------------------
  12. .\" * Define some portability stuff
  13. .\" -----------------------------------------------------------------
  14. .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  15. .\" http://bugs.debian.org/507673
  16. .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
  17. .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  18. .ie \n(.g .ds Aq \(aq
  19. .el .ds Aq '
  20. .\" -----------------------------------------------------------------
  21. .\" * set default formatting
  22. .\" -----------------------------------------------------------------
  23. .\" disable hyphenation
  24. .nh
  25. .\" disable justification (adjust text to left margin only)
  26. .ad l
  27. .\" -----------------------------------------------------------------
  28. .\" * MAIN CONTENT STARTS HERE *
  29. .\" -----------------------------------------------------------------
  30. .SH "NAME"
  31. git-hash-object \- Compute object ID and optionally create an object from a file
  32. .SH "SYNOPSIS"
  33. .sp
  34. .nf
  35. \fIgit hash\-object\fR [\-t <type>] [\-w] [\-\-path=<file> | \-\-no\-filters]
  36. [\-\-stdin [\-\-literally]] [\-\-] <file>\&...\:
  37. \fIgit hash\-object\fR [\-t <type>] [\-w] \-\-stdin\-paths [\-\-no\-filters]
  38. .fi
  39. .SH "DESCRIPTION"
  40. .sp
  41. 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\&. When <type> is not specified, it defaults to "blob"\&.
  42. .SH "OPTIONS"
  43. .PP
  44. \-t <type>
  45. .RS 4
  46. Specify the type of object to be created (default: "blob")\&. Possible values are
  47. \fBcommit\fR,
  48. \fBtree\fR,
  49. \fBblob\fR, and
  50. \fBtag\fR\&.
  51. .RE
  52. .PP
  53. \-w
  54. .RS 4
  55. Actually write the object into the object database\&.
  56. .RE
  57. .PP
  58. \-\-stdin
  59. .RS 4
  60. Read the object from standard input instead of from a file\&.
  61. .RE
  62. .PP
  63. \-\-stdin\-paths
  64. .RS 4
  65. Read file names from the standard input, one per line, instead of from the command\-line\&.
  66. .RE
  67. .PP
  68. \-\-path
  69. .RS 4
  70. Hash object as if it were located at the given path\&. The location of the file does not directly influence the hash value, but the path is used to determine which Git filters should be applied to the object before it can be placed in the object database\&. As a 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\&.
  71. .RE
  72. .PP
  73. \-\-no\-filters
  74. .RS 4
  75. Hash the contents as is, ignoring any input filter that would have been chosen by the attributes mechanism, including the end\-of\-line conversion\&. If the file is read from standard input then this is always implied, unless the
  76. \fB\-\-path\fR
  77. option is given\&.
  78. .RE
  79. .PP
  80. \-\-literally
  81. .RS 4
  82. Allow
  83. \fB\-\-stdin\fR
  84. to hash any garbage into a loose object which might not otherwise pass standard object parsing or git\-fsck checks\&. Useful for stress\-testing Git itself or reproducing characteristics of corrupt or bogus objects encountered in the wild\&.
  85. .RE
  86. .SH "GIT"
  87. .sp
  88. Part of the \fBgit\fR(1) suite