git_init
Initialize a new Git repository at a specified path using GitMCP. Simplifies repository setup for AI-assisted project management and documentation access.
Instructions
Initialize a new Git repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Path to initialize repository |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path to initialize repository",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}