Fix a "label defined but unreferenced" warning.
[git/mingw.git] / Documentation / git-resolve.txt
blob7fde665fb5a0fe477c4ac534668419fef1ffe719
1 git-resolve(1)
2 ==============
4 NAME
5 ----
6 git-resolve - Merge two commits
9 SYNOPSIS
10 --------
11 'git-resolve' <current> <merged> <message>
13 DESCRIPTION
14 -----------
15 DEPRECATED and will be removed in 1.5.1.  Use `git-merge` instead.
17 Given two commits and a merge message, merge the <merged> commit
18 into <current> commit, with the commit log message <message>.
20 When <current> is a descendant of <merged>, or <current> is an
21 ancestor of <merged>, no new commit is created and the <message>
22 is ignored.  The former is informally called "already up to
23 date", and the latter is often called "fast forward".
26 Author
27 ------
28 Written by Linus Torvalds <torvalds@osdl.org> and
29 Dan Holmsand <holmsand@gmail.com>.
31 Documentation
32 --------------
33 Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
35 GIT
36 ---
37 Part of the gitlink:git[7] suite