git_config
Set up or modify Git repository configurations by specifying the repository path, scope, and key-value pairs to adjust settings as needed.
Instructions
Configure git settings for the repository.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | Configuration key | |
repo_path | Yes | The path to the local Git repository | |
scope | No | Configuration scope (local, global, system) | local |
value | Yes | Configuration value |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"description": "Configuration key",
"type": "string"
},
"repo_path": {
"description": "The path to the local Git repository",
"type": "string"
},
"scope": {
"default": "local",
"description": "Configuration scope (local, global, system)",
"enum": [
"local",
"global",
"system"
],
"type": "string"
},
"value": {
"description": "Configuration value",
"type": "string"
}
},
"required": [
"repo_path",
"key",
"value"
],
"type": "object"
}