There are more AWS SDK examples available in the AWS Doc SDK Examples
Use CreateBranch
with a CLI
The following code examples show how to use CreateBranch
.
- CLI
-
- AWS CLI
-
To create a branch
This example creates a branch in an AWS CodeCommit repository. This command produces output only if there are errors.
Command:
aws codecommit create-branch --repository-name
MyDemoRepo
--branch-nameMyNewBranch
--commit-id317f8570EXAMPLE
Output:
None.
-
For API details, see CreateBranch
in AWS CLI Command Reference.
-
- PowerShell
-
- Tools for PowerShell
-
Example 1: This example creates a new branch with the specified name for the specified repository and the specified commit ID.
New-CCBranch -RepositoryName MyDemoRepo -BranchName MyNewBranch -CommitId 7763222d...561fc9c9
-
For API details, see CreateBranch in AWS Tools for PowerShell Cmdlet Reference.
-
BatchGetRepositories
CreateRepository