]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-resolve.txt
Merge branch 'ml/cvsserver'
[thirdparty/git.git] / Documentation / git-resolve.txt
CommitLineData
215a7ad1
JH
1git-resolve(1)
2==============
2cf565c5
DG
3
4NAME
5----
215a7ad1 6git-resolve - Merge two commits
2cf565c5
DG
7
8
9SYNOPSIS
10--------
cc1621e2 11'git-resolve' <current> <merged> <message>
2cf565c5
DG
12
13DESCRIPTION
14-----------
ab9b3138
JH
15Given two commits and a merge message, merge the <merged> commit
16into <current> commit, with the commit log message <message>.
17
18When <current> is a descendant of <merged>, or <current> is an
19ancestor of <merged>, no new commit is created and the <message>
20is ignored. The former is informally called "already up to
21date", and the latter is often called "fast forward".
2cf565c5
DG
22
23
24Author
25------
3f971fc4
JH
26Written by Linus Torvalds <torvalds@osdl.org> and
27Dan Holmsand <holmsand@gmail.com>.
2cf565c5
DG
28
29Documentation
30--------------
31Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
32
33GIT
34---
a7154e91 35Part of the gitlink:git[7] suite
2cf565c5 36