# Create Branch

> Create a new branch in a GitHub repository

- Skill: `xiaobai1017/create-branch` (Agent Skill)
- Install (CLI): `npx skillmds@latest add xiaobai1017/create-branch`
- Raw SKILL.md: https://api.skillmd.com/api/skills/xiaobai1017/create-branch/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: xiaobai1017 (https://skillmd.com/u/xiaobai1017)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/xiaobai1017/create-branch

---


# create_branch

Create a new branch in a GitHub repository

## Purpose

This skill provides access to the MCP tool `create_branch`. It allows you to create a new branch in a github repository.

## Parameters

The tool accepts the following parameters:

### `owner`
**Required**
- **Type**: `string`
- **Description**: Repository owner (username or organization)

### `repo`
**Required**
- **Type**: `string`
- **Description**: Repository name

### `branch`
**Required**
- **Type**: `string`
- **Description**: Name for the new branch

### `from_branch`
*Optional*
- **Type**: `string`
- **Description**: Optional: source branch to create from (defaults to the repository's default branch)


## Usage Instructions

To use this tool:

1. **Prepare the parameters** according to the schema above
2. **Invoke the MCP tool** `create_branch` with the prepared parameters
3. **Process the result** returned by the tool

## Example

```json
{
  "owner": "example_value",
  "repo": "example_value",
  "branch": "example_value",
  "from_branch": "example_value"
}
```


## Notes

- This skill requires an active MCP connection to the server providing the `create_branch` tool
- Ensure the MCP server is properly configured and running before attempting to use this tool
- Review the parameter requirements carefully to avoid errors
