Author: dsahlberg
Date: Thu Jul 31 18:15:08 2025
New Revision: 1927556

Log:
In site/publish:

Merge r1927514 and r1927555 from staging, updating HACKING with the proper
way to use search-svnlog.pl.

* docs/community-guide/conventions.part.html
  (#crediting): Update the example

Modified:
   subversion/site/publish/   (props changed)
   subversion/site/publish/docs/community-guide/conventions.part.html

Modified: subversion/site/publish/docs/community-guide/conventions.part.html
==============================================================================
--- subversion/site/publish/docs/community-guide/conventions.part.html  Thu Jul 
31 18:12:44 2025        (r1927555)
+++ subversion/site/publish/docs/community-guide/conventions.part.html  Thu Jul 
31 18:15:08 2025        (r1927556)
@@ -1252,7 +1252,16 @@ these fields in practice.  This command
 working copy will help:</p>
 
 <pre>
-svn log | contrib/client-side/search-svnlog.pl "(Patch|Review|Suggested) by: "
+$ contrib/client-side/search-svnlog.pl "(Patch|Review|Suggested) by: "
+</pre>
+
+<p>The script runs 'svn log' internally. You can customize the invocation
+of 'svn log' by piping its output to the script; the '-f -' arguments
+are required for this. For example, to search only the last 100 log
+messages:</p>
+
+<pre>
+$ svn log -l 100 | contrib/client-side/search-svnlog.pl -f - 
"(Patch|Review|Suggested) by: "
 </pre>
 
 <p><b>Note:</b> The "Approved&nbsp;by:&nbsp;" field seen in some

Reply via email to