Оновити січень 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.