Cập nhật tháng 1 năm 2020
VisualSVN Server 4.2 hỗ trợ tìm tệp và thư mục trong giao diện web. Hãy thử tính năng mới trên một trong các kho lưu trữ của máy chủ demo !
Xem Ghi chú phát hành phiên bản 4.2 và tải xuống VisualSVN Server 4.2.0 từ trang tải xuống chính .
Câu trả lời cũ
Bắt đầu với Subversion 1.8, bạn có thể sử dụng --search
tùy chọn với svn log
lệnh . Lưu ý rằng lệnh không thực hiện tìm kiếm toàn văn bản trong kho lưu trữ, nó chỉ xem xét các dữ liệu sau:
- tác giả sửa đổi (
svn:author
tài sản không đảo ngược),
- ngày (
svn:date
tài sản không đảo ngược),
- nhật ký tin nhắn văn bản (
svn:log
tài sản không đảo ngược),
- danh sách các đường dẫn thay đổi (tức là các đường dẫn bị ảnh hưởng bởi sửa đổi cụ thể).
Đây là trang trợ giúp về các tùy chọn tìm kiếm mới này:
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.