git_checkout
Switch Git repository branches with specified repo path and branch name using the MCP Git Server, enabling efficient branch management for LLMs.
Instructions
Switches branches
Input Schema
Name | Required | Description | Default |
---|---|---|---|
branch_name | Yes | ||
repo_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"branch_name": {
"title": "Branch Name",
"type": "string"
},
"repo_path": {
"title": "Repo Path",
"type": "string"
}
},
"required": [
"repo_path",
"branch_name"
],
"title": "GitCheckout",
"type": "object"
}