Actualización de enero de 2020
VisualSVN Server 4.2 admite la búsqueda de archivos y carpetas en la interfaz web. ¡Pruebe la nueva función en uno de los repositorios del servidor de demostración !
Consulte las Notas de la versión 4.2 y descargue VisualSVN Server 4.2.0 desde la página de descarga principal .
Vieja respuesta
A partir de Subversion 1.8, puede usar la --search
opción con el svn log
comando . Tenga en cuenta que el comando no realiza una búsqueda de texto completo dentro de un repositorio, solo considera los siguientes datos:
- autor de la revisión (
svn:author
propiedad no versionada),
- fecha (
svn:date
propiedad no versionada),
- texto del mensaje de registro (
svn:log
propiedad no versionada),
- lista de rutas cambiadas (es decir, rutas afectadas por la revisión particular).
Aquí está la página de ayuda sobre estas nuevas opciones de búsqueda:
If the --search option is used, log messages are displayed only if the
provided search pattern matches any of the author, date, log message
text (unless --quiet is used), or, if the --verbose option is also
provided, a changed path.
The search pattern may include "glob syntax" wildcards:
? matches any single character
* matches a sequence of arbitrary characters
[abc] matches any of the characters listed inside the brackets
If multiple --search options are provided, a log message is shown if
it matches any of the provided search patterns. If the --search-and
option is used, that option's argument is combined with the pattern
from the previous --search or --search-and option, and a log message
is shown only if it matches the combined search pattern.
If --limit is used in combination with --search, --limit restricts the
number of log messages searched, rather than restricting the output
to a particular number of matching log messages.