git_commit
Stage and save changes to a Git repository by providing the repository path and commit message, enabling version control updates.
Instructions
Commit staged changes
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | Commit message | |
path | Yes | Repository path |
Input Schema (JSON Schema)
{
"properties": {
"message": {
"description": "Commit message",
"type": "string"
},
"path": {
"description": "Repository path",
"type": "string"
}
},
"required": [
"path",
"message"
],
"type": "object"
}