init
Initialize a new Git repository by specifying an absolute path for setup, enabling enhanced Git operations via the Git MCP Server for streamlined version control.
Instructions
Initialize a new Git repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | No | Path to initialize the repository in. MUST be an absolute path (e.g., /Users/username/projects/my-repo) |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path to initialize the repository in. MUST be an absolute path (e.g., /Users/username/projects/my-repo)",
"type": "string"
}
},
"required": [],
"type": "object"
}