Setup and Config
Getting and Creating Projects
Basic Snapshotting
Branching and Merging
Sharing and Updating Projects
Inspection and Comparison
Patching
Debugging
External Systems
Administration
Server Admin
Plumbing Commands
- 1.8.2.2 → 1.8.2.3 no changes
-
1.8.2.1
04/07/13
- 1.7.5.1 → 1.8.1.6 no changes
-
1.7.5
04/24/11
- 1.7.2.4 → 1.7.4.5 no changes
-
1.7.2.3
09/03/10
- 1.7.1.1 → 1.7.2.2 no changes
-
1.7.1
04/24/10
- 1.7.0.1 → 1.7.0.9 no changes
-
1.7.0
02/12/10
- 1.6.1.1 → 1.6.6.3 no changes
-
1.6.1
12/25/08
- 1.6.0.1 → 1.6.0.6 no changes
-
1.6.0
08/17/08
- 1.5.6.6 no changes
-
1.5.6.5
08/06/08
- 1.5.6.1 → 1.5.6.4 no changes
-
1.5.6
06/18/08
- 1.5.4.1 → 1.5.5.6 no changes
-
1.5.4
02/02/08
git-hash-object(1) Manual Page
NAME
git-hash-object - Compute object ID and optionally creates a blob from a file
SYNOPSIS
git-hash-object [-t <type>] [-w] [--stdin | --stdin-paths] [--] <file>...
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. This is used by "git-cvsimport" to update the index without modifying files in the work tree. When <type> is not specified, it defaults to "blob".
OPTIONS
- -t <type>
Specify the type (default: "blob").
- -w
Actually write the object into the object database.
- --stdin
Read the object from standard input instead of from a file.
- --stdin-paths
Read file names from stdin instead of from the command-line.
Author
Written by Junio C Hamano <gitster@pobox.com>
Documentation
Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
GIT
Part of the git(1) suite