System Grab Bag

View all TLDR pages from common (or from all pages)

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

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.