HEX
Server: LiteSpeed
System: Linux s3604.bom1.stableserver.net 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
User: dmstechonline (1480)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: //lib/python3.6/site-packages/awscli/examples/codecommit/merge-branches-by-three-way.rst
**To merge two branches using the three-way merge strategy**

The following ``merge-branches-by-three-way`` example merges the specified source branch with the specified destination branch in a repository named ``MyDemoRepo``. ::

    aws codecommit merge-branches-by-three-way \
        --source-commit-specifier master \
        --destination-commit-specifier bugfix-bug1234 \
        --author-name "Jorge Souza" --email "jorge_souza@example.com" \
        --commit-message "Merging changes from master to bugfix branch before additional testing." \
        --repository-name MyDemoRepo

Output::

    {
        "commitId": "4f178133EXAMPLE",
        "treeId": "389765daEXAMPLE"
    }

For more information, see `Compare and Merge Branches <https://docs.aws.amazon.com/codecommit/latest/userguide/how-to-compare-branches.html#merge-branches-by-three-way>`__ in the *AWS CodeCommit User Guide*.