git_checkout
Switch to a specified branch in a Git repository by providing the repo path and branch name. Enables efficient branch management and context switching for streamlined development workflows.
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"
}