git_init
Set up a new Git repository by specifying the path. This tool simplifies repository initialization, enabling quick project setup for version control.
Instructions
Initialize a new Git repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
repo_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"repo_path": {
"title": "Repo Path",
"type": "string"
}
},
"required": [
"repo_path"
],
"title": "GitInit",
"type": "object"
}