get_branch_overview
Analyze and visualize branch states and relationships in a Git repository to understand development workflows and dependencies.
Instructions
Get high-level overview of branch states and relationships
Input Schema
Name | Required | Description | Default |
---|---|---|---|
branches | Yes | Branches to analyze | |
outputPath | Yes | Path to write analysis output | |
repoPath | Yes | Path to git repository |
Input Schema (JSON Schema)
{
"properties": {
"branches": {
"description": "Branches to analyze",
"items": {
"type": "string"
},
"type": "array"
},
"outputPath": {
"description": "Path to write analysis output",
"type": "string"
},
"repoPath": {
"description": "Path to git repository",
"type": "string"
}
},
"required": [
"repoPath",
"branches",
"outputPath"
],
"type": "object"
}