From 5556c3a0f426e31574dd59bc2731dca37578c34e Mon Sep 17 00:00:00 2001 From: UmakanthKaspa Date: Sat, 8 Nov 2025 17:13:48 +0000 Subject: [PATCH] Fix git_create_branch parameter documentation Changed incorrect 'start_point' to correct 'base_branch' parameter. The documented parameter didn't match the actual code implementation. --- src/git/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/git/README.md b/src/git/README.md index 3a46b01c6f..a922fdecc1 100644 --- a/src/git/README.md +++ b/src/git/README.md @@ -70,7 +70,7 @@ Please note that mcp-server-git is currently in early development. The functiona - Inputs: - `repo_path` (string): Path to Git repository - `branch_name` (string): Name of the new branch - - `start_point` (string, optional): Starting point for the new branch + - `base_branch` (string, optional): Base branch to create from (defaults to current branch) - Returns: Confirmation of branch creation 10. `git_checkout` - Switches branches