svn_revert
Revert local changes to files or directories in a Subversion (SVN) repository by specifying the paths to undo modifications and restore previous versions.
Instructions
Revertir cambios locales en archivos
Input Schema
Name | Required | Description | Default |
---|---|---|---|
paths | Yes | Archivo(s) o directorio(s) a revertir |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"paths": {
"anyOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
],
"description": "Archivo(s) o directorio(s) a revertir"
}
},
"required": [
"paths"
],
"type": "object"
}