Use sensible domain name (the DNS one) when guessing ident information
[git/dscho.git] / Documentation / git-merge.txt
bloba007a8b15a1a4598aabd844d09e45db65db6e3a5
1 git-merge(1)
2 ============
4 NAME
5 ----
6 git-merge - Grand Unified Merge Driver
9 SYNOPSIS
10 --------
11 'git-merge' [-n] [-s <strategy>]... <msg> <head> <remote> <remote>...
14 DESCRIPTION
15 -----------
16 This is the top-level user interface to the merge machinery
17 which drives multiple merge strategy scripts.
20 OPTIONS
21 -------
22 -n::
23         Do not show diffstat at the end of the merge.
25 -s <strategy>::
26         use that merge strategy; can be given more than once to
27         specify them in the order they should be tried.  If
28         there is no `-s` option, built-in list of strategies is
29         used instead.
31 <head>::
32         our branch head commit.
34 <remote>::
35         other branch head merged into our branch.  You need at
36         least one <remote>.  Specifying more than one <remote>
37         obviously means you are trying an Octopus.
40 Author
41 ------
42 Written by Junio C Hamano <junkio@cox.net>
45 Documentation
46 --------------
47 Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
49 GIT
50 ---
51 Part of the gitlink:git[7] suite