github_list_branches
Retrieve branch information from any GitHub repository to track development work, manage code versions, and understand project structure.
Instructions
List branches in a GitHub repository.
Args: repo_name: Full repository name (e.g., "owner/repo") limit: Maximum number of branches to return (default: 20)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| repo_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 20,
"type": "integer"
},
"repo_name": {
"type": "string"
}
},
"required": [
"repo_name"
],
"type": "object"
}