--- /dev/null
+GIT-MR-MERGE(1)
+===============
+:doctype: manpage
+
+
+NAME
+----
+git-mr-merge - Merge MR to current branch
+
+
+SYNOPSIS
+--------
+*git-mr-merge* ['OPTIONS'] 'MR'
+
+
+DESCRIPTION
+-----------
+Merge 'MR' to the current branch if 'MR' base matches common ancestor found
+by 'git-merge-base'. This should prevent incorporation of unwanted changes
+in cases where the 'MR' is e.g. based atop of another 'MR', which is not
+yet merged. This check is skipped when the *-f* option is used.
+
+The merge commit message by default contains subject and description
+as provided during link:git-mr-create.html[git-mr-create(1)]. It can be
+modified if the *-e* option is used.
+
+
+OPTIONS
+-------
+*-f, --force*::
+ Proceed with the merge even if the MR base does not match git merge base.
+
+*--ff*::
+ Allow fast-forward. By default merge commit is created even for
+ fast-forward merges.
+
+*-e, --edit*::
+ Invoke an editor before committing successful mechanical merge.
+
+EXAMPLES
+--------
+`$ git mr-merge --edit MR`::
+ Merge 'MR' specified by revision to current branch and edit commit message.
+
+SEE ALSO
+--------
+link:git-mr.html[git-mr(1)]
link:git-mr-update.html[git-mr-update(1)]
link:git-mr-mbox.html[git-mr-mbox(1)]
link:git-mr-reply.html[git-mr-reply(1)]
+link:git-mr-merge.html[git-mr-merge(1)]