summaryrefslogtreecommitdiff
path: root/Documentation/git-merge.txt
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-09-09 08:15:47 (GMT)
committerJunio C Hamano <junkio@cox.net>2005-09-11 01:30:42 (GMT)
commit0f69be537618036c45bc07919248b88afbf7af3e (patch)
treeb9d98fbff2a5b6ec4b17656eea6321b251b9a0b9 /Documentation/git-merge.txt
parent2276aa6c098a0337bc2bec49742e332bdd1b802c (diff)
downloadgit-0f69be537618036c45bc07919248b88afbf7af3e.zip
git-0f69be537618036c45bc07919248b88afbf7af3e.tar.gz
git-0f69be537618036c45bc07919248b88afbf7af3e.tar.bz2
'git-merge': Documentation.
... and add link from git.txt, as usual. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/git-merge.txt')
-rw-r--r--Documentation/git-merge.txt52
1 files changed, 52 insertions, 0 deletions
diff --git a/Documentation/git-merge.txt b/Documentation/git-merge.txt
new file mode 100644
index 0000000..a48697f
--- /dev/null
+++ b/Documentation/git-merge.txt
@@ -0,0 +1,52 @@
+git-merge(1)
+============
+v0.99.6, Sep 2005
+
+NAME
+----
+git-merge - Grand Unified Merge Driver
+
+
+SYNOPSIS
+--------
+'git-merge' [-n] [-s <strategy>]... <msg> <head> <remote> <remote>...
+
+
+DESCRIPTION
+-----------
+This is the top-level user interface to the merge machinery
+which drives multiple merge strategy scripts.
+
+
+OPTIONS
+-------
+-n::
+ Do not show diffstat at the end of the merge.
+
+-s <strategy>::
+ use that merge strategy; can be given more than once to
+ specify them in the order they should be tried. If
+ there is no `-s` option, built-in list of strategies is
+ used instead.
+
+<head>::
+ our branch head commit.
+
+<remote>::
+ other branch head merged into our branch. You need at
+ least one <remote>. Specifying more than one <remote>
+ obviously means you are trying an Octopus.
+
+
+Author
+------
+Written by Junio C Hamano <junkio@cox.net>
+
+
+Documentation
+--------------
+Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
+
+GIT
+---
+Part of the link:git.html[git] suite