git_init
Initialize a new git repository in any directory to start tracking code changes and manage version control for your development projects.
Instructions
Initialize a new git repository
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cwd | No | Directory to initialize as git repository | |
| bare | No | Create bare repository |
Input Schema (JSON Schema)
{
"properties": {
"bare": {
"default": false,
"description": "Create bare repository",
"type": "boolean"
},
"cwd": {
"description": "Directory to initialize as git repository",
"type": "string"
}
},
"type": "object"
}