1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 01:22:08 +02:00
tldr/pages/common/dolt-merge.md
2022-10-16 08:45:56 +05:30

700 B

dolt merge

Join two or more development histories together. More information: https://github.com/dolthub/dolt.

  • Incorporate changes from the named commits into the current branch:

dolt merge {{branch_name}}

  • Incorporate changes from the named commits into the current branch without updating the commit history:

dolt merge --squash {{branch_name}}

  • Merge a branch and create a merge commit even when the merge resolves as a fast-forward:

dolt merge --no-ff {{branch_name}}

  • Merge a branch and create a merge commit with a specific commit message:

dolt merge --no-ff -m "{{message}}" {{branch_name}}

  • Abort the current conflict resolution process:

dolt merge --abort