git_commit
Create Git commits with custom messages for specified repositories, enabling version control and tracking changes efficiently within the Git Repo Browser MCP environment.
Instructions
Create a commit with the specified message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | The commit message | |
repo_path | Yes | The path to the local Git repository |
Input Schema (JSON Schema)
{
"properties": {
"message": {
"description": "The commit message",
"type": "string"
},
"repo_path": {
"description": "The path to the local Git repository",
"type": "string"
}
},
"required": [
"repo_path",
"message"
],
"type": "object"
}