svn_status
Check the status of files in an SVN working copy, including remote changes, by specifying a path and optional visibility of remote updates.
Instructions
Ver el estado de archivos en el working copy
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | No | Ruta específica a consultar | |
showAll | No | Mostrar estado remoto también |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"path": {
"description": "Ruta específica a consultar",
"type": "string"
},
"showAll": {
"default": false,
"description": "Mostrar estado remoto también",
"type": "boolean"
}
},
"type": "object"
}