svn_checkout
Check out SVN repositories by specifying URL, destination path, revision, depth, and options to force checkout or ignore externals.
Instructions
Hacer checkout de un repositorio SVN
Input Schema
Name | Required | Description | Default |
---|---|---|---|
depth | No | Profundidad del checkout | |
force | No | Forzar checkout | |
ignoreExternals | No | Ignorar externals | |
path | No | Directorio destino | |
revision | No | Revisión específica | |
url | Yes | URL del repositorio SVN |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"depth": {
"description": "Profundidad del checkout",
"enum": [
"empty",
"files",
"immediates",
"infinity"
],
"type": "string"
},
"force": {
"default": false,
"description": "Forzar checkout",
"type": "boolean"
},
"ignoreExternals": {
"default": false,
"description": "Ignorar externals",
"type": "boolean"
},
"path": {
"description": "Directorio destino",
"type": "string"
},
"revision": {
"anyOf": [
{
"type": "number"
},
{
"const": "HEAD",
"type": "string"
}
],
"description": "Revisión específica"
},
"url": {
"description": "URL del repositorio SVN",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}