Path: blob/develop/awscli/examples/codecommit/list-branches.rst
2634 views
**To view a list of branch names**
This example lists all branch names in an AWS CodeCommit repository. ::
aws codecommit list-branches \
--repository-name MyDemoRepo
Output::
{
"branches": [
"MyNewBranch",
"main"
]
}