get_merge_recommendations
Analyze git repository branches to generate targeted merge strategy recommendations, aiding in efficient and informed repository management decisions.
Instructions
Get detailed merge strategy recommendations
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"
}