Options (1)
-m, --messagebooleanMerge a branch and create a merge commit with a specific commit message
Example:
dolt merge --no-ff {{[-m|--message]}} "{{message}}" {{branch_name}}Examples (5)
Incorporate changes from the named commits into the current branch
dolt merge branch_nameIncorporate changes from the named commits into the current branch without updating the commit history
dolt merge --squash branch_nameMerge a branch and create a merge commit even when the merge resolves as a fast-forward
dolt merge --no-ff branch_nameMerge a branch and create a merge commit with a specific commit message
dolt merge --no-ff [-m|--message] "message" branch_nameAbort the current conflict resolution process
dolt merge --abortmade by @shridhargupta | data from tldr-pages