core.hidedotfiles: hide '.git' dir by default
[git/dscho.git] / Documentation / git-merge-tree.txt
blobc5f84b649504f1708be9cd925023af3afd685337
1 git-merge-tree(1)
2 =================
4 NAME
5 ----
6 git-merge-tree - Show three-way merge without touching index
9 SYNOPSIS
10 --------
11 [verse]
12 'git merge-tree' <base-tree> <branch1> <branch2>
14 DESCRIPTION
15 -----------
16 Reads three treeish, and output trivial merge results and
17 conflicting stages to the standard output.  This is similar to
18 what three-way 'git read-tree -m' does, but instead of storing the
19 results in the index, the command outputs the entries to the
20 standard output.
22 This is meant to be used by higher level scripts to compute
23 merge results outside of the index, and stuff the results back into the
24 index.  For this reason, the output from the command omits
25 entries that match the <branch1> tree.
27 GIT
28 ---
29 Part of the linkgit:git[1] suite