Обновление январь 2020
VisualSVN Server 4.2 поддерживает поиск файлов и папок в веб-интерфейсе. Попробуйте новую функцию в одном из репозиториев демо-сервера !
См. Примечания к выпуску версии 4.2 и загрузите VisualSVN Server 4.2.0 с главной страницы загрузки .
Старый ответ
Начиная с Subversion 1.8, вы можете использовать --search
опцию с svn log
командой . Обратите внимание, что команда не выполняет полнотекстовый поиск внутри репозитория, она учитывает только следующие данные:
- автор ревизии (
svn:author
неверсионная собственность),
- Дата (
svn:date
неверсионная собственность),
- текст сообщения журнала (
svn:log
неверсионное свойство),
- список измененных путей (то есть путей, затронутых конкретной ревизией).
Вот страница справки об этих новых параметрах поиска:
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.