git_commit
Record repository changes with a commit message and optional GPG signing. Use this tool to track modifications and maintain version control in Git repositories.
Instructions
Records changes to the repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gpg_key_id | No | ||
gpg_sign | No | ||
message | Yes | ||
repo_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"gpg_key_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Gpg Key Id"
},
"gpg_sign": {
"default": false,
"title": "Gpg Sign",
"type": "boolean"
},
"message": {
"title": "Message",
"type": "string"
},
"repo_path": {
"title": "Repo Path",
"type": "string"
}
},
"required": [
"repo_path",
"message"
],
"title": "GitCommit",
"type": "object"
}