7 git-resolve-script - Merge two commits
12 'git resolve' <current> <merged> <message>
16 Given two commits and a merge message, merge the <merged> commit
17 into <current> commit, with the commit log message <message>.
19 When <current> is a descendant of <merged>, or <current> is an
20 ancestor of <merged>, no new commit is created and the <message>
21 is ignored. The former is informally called "already up to
22 date", and the latter is often called "fast forward".
27 Written by Linus Torvalds <torvalds@osdl.org> and
28 Dan Holmsand <holmsand@gmail.com>.
32 Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
36 Part of the link:git.html[git] suite