CellPilot / aws /dist /awscli /examples /codecommit /list-branches.rst
philippendres's picture
Upload folder using huggingface_hub
907462b verified
Raw
History Blame Contribute Delete
282 Bytes
**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"
]
}