diff options
author | Junio C Hamano <junkio@cox.net> | 2006-04-13 00:09:54 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-04-13 00:21:06 -0700 |
commit | c16e30c0884549d48a73d7f2ebbbb470a0e1576b (patch) | |
tree | f83b22c2229896547acc753a4e91e4076c2806ce /Documentation/git-merge-tree.txt | |
parent | 02376287ffd8b37ea7622fd4b61d654855112e75 (diff) | |
download | git-c16e30c0884549d48a73d7f2ebbbb470a0e1576b.tar.gz git-c16e30c0884549d48a73d7f2ebbbb470a0e1576b.tar.xz |
Documentation: add a couple of missing docs.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/git-merge-tree.txt')
-rw-r--r-- | Documentation/git-merge-tree.txt | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/Documentation/git-merge-tree.txt b/Documentation/git-merge-tree.txt new file mode 100644 index 000000000..35fb4fb71 --- /dev/null +++ b/Documentation/git-merge-tree.txt @@ -0,0 +1,37 @@ +git-merge-tree(1) +================= + +NAME +---- +git-merge-tree - Show three-way merge without touching index + + +SYNOPSIS +-------- +'git-merge-tree' <base-tree> <branch1> <branch2> + +DESCRIPTION +----------- +Reads three treeish, and output trivial merge results and +conflicting stages to the standard output. This is similar to +what three-way read-tree -m does, but instead of storing the +results in the index, the command outputs the entries to the +standard output. + +This is meant to be used by higher level scripts to compute +merge results outside index, and stuff the results back into the +index. For this reason, the output from the command omits +entries that match <branch1> tree. + +Author +------ +Written by Linus Torvalds <torvalds@osdl.org> + +Documentation +-------------- +Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>. + +GIT +--- +Part of the gitlink:git[7] suite + |