git_diff_branches
Compare changes between two branches in a Git repository to identify differences, enabling clear review and analysis of code updates.
Instructions
Show differences between two branches
Input Schema
Name | Required | Description | Default |
---|---|---|---|
base_branch | Yes | ||
compare_branch | Yes | ||
repo_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"base_branch": {
"title": "Base Branch",
"type": "string"
},
"compare_branch": {
"title": "Compare Branch",
"type": "string"
},
"repo_path": {
"title": "Repo Path",
"type": "string"
}
},
"required": [
"repo_path",
"base_branch",
"compare_branch"
],
"title": "GitDiffBranches",
"type": "object"
}