mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-25 10:15:24 +02:00
dolt-merge: add page (#8800)
This commit is contained in:
parent
cae5ae7058
commit
5c815649fa
1 changed files with 24 additions and 0 deletions
24
pages/common/dolt-merge.md
Normal file
24
pages/common/dolt-merge.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# 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`
|
Loading…
Add table
Reference in a new issue