| title | `glab mr merge` |
|---|---|
| stage | Create |
| group | Code Review |
| info | To determine the technical writer assigned to the Stage/Group associated with this page, see <https://handbook.gitlab.com/handbook/product/ux/technical-writing/#assignments> |
Merge or accept a merge request.
glab mr merge {<id> | <branch>} [flags]
accept
# Merge a merge request
glab mr merge 235
glab mr accept 235
# Finds open merge request from current branch
glab mr merge --auto-merge Set auto-merge. (default true)
-m, --message string Custom merge commit message.
-r, --rebase Rebase the commits onto the base branch.
-d, --remove-source-branch Remove source branch on merge.
--sha string Merge only if the HEAD of the source branch matches this SHA. Use to ensure that only reviewed commits are merged.
-s, --squash Squash commits on merge.
--squash-message string Custom squash commit message.
-y, --yes Skip submission confirmation prompt.
-h, --help Show help for this command.
-R, --repo OWNER/REPO Select another repository. Can use either OWNER/REPO or `GROUP/NAMESPACE/REPO` format. Also accepts full URL or Git URL.