git_branch_create
Create a new branch in a GitHub repository by specifying the repository path and branch name using the GitMCP server.
Instructions
Create a new branch
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Branch name | |
path | Yes | Repository path |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Branch name",
"type": "string"
},
"path": {
"description": "Repository path",
"type": "string"
}
},
"required": [
"path",
"name"
],
"type": "object"
}