svn_log
Retrieve commit history from a Subversion (SVN) repository by specifying a path, revision range, or maximum entries to streamline repository management and version tracking.
Instructions
Ver historial de commits del repositorio
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Número máximo de entradas | |
path | No | Ruta específica | |
revision | No | Revisión específica o rango (ej: 100:200) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"default": 10,
"description": "Número máximo de entradas",
"type": "number"
},
"path": {
"description": "Ruta específica",
"type": "string"
},
"revision": {
"description": "Revisión específica o rango (ej: 100:200)",
"type": "string"
}
},
"type": "object"
}