git_create_branch
Create a new Git branch and switch to it immediately. Specify a branch name and optional starting point to organize development work.
Instructions
Create a new branch and switch to it (git checkout -b)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| branchName | Yes | Name of the new branch to create | |
| startPoint | No | Starting point for the new branch (branch name or commit hash) | HEAD |