git_commit
Submit staged changes to a Git repository with a specified commit message. Use to streamline version control workflows within the Code MCP Server environment.
Instructions
Commit staged changes
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cwd | No | Repository path | |
message | Yes | Commit message |
Input Schema (JSON Schema)
{
"properties": {
"cwd": {
"description": "Repository path",
"type": "string"
},
"message": {
"description": "Commit message",
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
}