Autogenerated man pages for v1.4.0-gcb11
authorJunio C Hamano <junio@hera.kernel.org>
Sun, 18 Jun 2006 09:26:48 +0000 (09:26 +0000)
committerJunio C Hamano <junio@hera.kernel.org>
Sun, 18 Jun 2006 09:26:48 +0000 (09:26 +0000)
man1/git-read-tree.1
man1/git-write-tree.1

index 0fedb5c21295ede95f78d7608b40cd131cd4c917..084e28fea77dc015806af681b8df7081e3af9daa 100755 (executable)
@@ -23,7 +23,7 @@ git-read-tree \- Reads tree information into the index
 .SH "SYNOPSIS"
 
 
-\fIgit\-read\-tree\fR (<tree\-ish> | [[\-m [\-\-aggressive]| \-\-reset] [\-u | \-i]] <tree\-ish1> [<tree\-ish2> [<tree\-ish3>]])
+\fIgit\-read\-tree\fR (<tree\-ish> | [[\-m [\-\-aggressive] | \-\-reset | \-\-prefix=<prefix>] [\-u | \-i]] <tree\-ish1> [<tree\-ish2> [<tree\-ish3>]])
 
 .SH "DESCRIPTION"
 
@@ -72,6 +72,10 @@ when both sides adds a path identically\&. The resolution is to add that path\&.
 .RE
 .IP
 
+.TP
+\-\-prefix=<prefix>/
+Keep the current index contents, and read the contents of named tree\-ish under directory at <prefix>\&. The original index file cannot have anything at the path <prefix> itself, and have nothing in <prefix>/ directory\&. Note that the <prefix>/ value must end with a slash\&.
+
 .TP
 <tree\-ish#>
 The id of the tree object(s) to be read/merged\&.
index 2b1aeb9739229b9291e10ce59ed73a2337cc900a..b99e8fde5275dd3e8af869f6a128ea094f371dcf 100755 (executable)
@@ -23,7 +23,7 @@ git-write-tree \- Creates a tree object from the current index
 .SH "SYNOPSIS"
 
 
-git\-write\-tree [\-\-missing\-ok]
+\fIgit\-write\-tree\fR [\-\-missing\-ok] [\-\-prefix=<prefix>/]
 
 .SH "DESCRIPTION"
 
@@ -42,6 +42,10 @@ Conceptually, git\-write\-tree sync()s the current index contents into a set of
 \-\-missing\-ok
 Normally git\-write\-tree ensures that the objects referenced by the directory exist in the object database\&. This option disables this check\&.
 
+.TP
+\-\-prefix=<prefix>/
+Writes a tree object that represents a subdirectory <prefix>\&. This can be used to write the tree object for a subproject that is in the named subdirectory\&.
+
 .SH "AUTHOR"