Searching subversion history (full text)

前端 未结 16 1336
慢半拍i
慢半拍i 2020-11-29 16:29

Is there a way to perform a full text search of a subversion repository, including all the history?

For example, I\'ve written a feature that I used somewhere, but t

16条回答
  •  自闭症患者
    2020-11-29 17:17

    svn log in Apache Subversion 1.8 supports a new --search option. So you can search Subversion repository history log messages without using 3'rd party tools and scripts.

    svn log --search searches in author, date, log message text and list of changed paths.

    See SVNBook | svn log command-line reference.

提交回复
热议问题