How do you search the text of changelist descriptions in Perforce? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T03:57:58Zhttp://stackoverflow.com/feeds/question/134103http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/134103/how-do-you-search-the-text-of-changelist-descriptions-in-perforce10How do you search the text of changelist descriptions in Perforce?raven2008-09-25T15:44:09Z2009-12-08T14:36:40Z
<p>On occasion, I find myself wanting to search the text of changelist descriptions in Perforce. There doesn't appear to be a way to do this in P4V. I can do it by redirecting the output of the changes command to a file...</p>
<pre><code>p4 changes -l > p4changes.txt
</code></pre>
<p>...(the -l switch tells it to dump the full text of the changelist descriptions) and then searching the file, but this is rather cumbersome. Has anyone found a better way?</p>
<p><hr /></p>
<p>Ctrl+F searching of change list descriptions is finally available in P4V 2009.1. It will only search what you pull from the server, however. We have less than 6000 CLs, so telling it to retrieve them all is not a problem for us, but if you have a huge number of change lists, searching them all this way may not be an option.</p>
http://stackoverflow.com/questions/134103/how-do-you-search-the-text-of-changelist-descriptions-in-perforce/134183#1341839Answer by jop for How do you search the text of changelist descriptions in Perforce?jop2008-09-25T15:57:06Z2008-09-27T16:35:04Z<p>I use <a href="http://www.perforce.com/perforce/doc.current/manuals/p4report/01_install.html" rel="nofollow">p4sql</a> and run a query on the "changes" database. Here's the <a href="http://www.perforce.com/perforce/doc.current/manuals/p4report/aa_schema.html" rel="nofollow">perforce database schema</a></p>
<p>The query looks something like this (untested)</p>
<pre><code>select change from changes where description like '%text%' and p4options = 'longdesc'
</code></pre>
<p>edit: added the p4options to return more than 31 characters in the description.</p>
http://stackoverflow.com/questions/134103/how-do-you-search-the-text-of-changelist-descriptions-in-perforce/134637#1346370Answer by Mark for How do you search the text of changelist descriptions in Perforce?Mark2008-09-25T17:16:23Z2008-09-25T17:16:23Z<p>Using p4sql is really the only way to effectively do what you want. I am not aware of any other way. The benefit of course is that you can use the select statements to limit the range of changelist values (via date, user, etc). Your method will work but will get cumbersome very quickly as you generate more changelists. You can limit the scope of the changes command, but you won't get the flexibility of p4sql. </p>
http://stackoverflow.com/questions/134103/how-do-you-search-the-text-of-changelist-descriptions-in-perforce/308066#3080660Answer by Epu for How do you search the text of changelist descriptions in Perforce?Epu2008-11-21T06:47:00Z2008-11-21T06:47:00Z<p>If you still love your command line, you can write a small perl script that:</p>
<ul>
<li>changes the record separator $/ to
double newline "\n\n" so it filters
the input into full records of the
ztagged p4 output. </li>
<li>scans
the '/^... desc/..//' part with
regular expressions from the args.</li>
</ul>
<p>usage would be something like 'p4 -ztag changes -l | yourperlfilter.pl searchterm1 searchterm2'</p>
<p>if that worked ok, you could <a href="http://markmail.org/message/ipcpb4ddbqhdmt43" rel="nofollow">integrate it into the p4win tools menu</a>.</p>
http://stackoverflow.com/questions/134103/how-do-you-search-the-text-of-changelist-descriptions-in-perforce/332458#3324582Answer by Greg Whitfield for How do you search the text of changelist descriptions in Perforce?Greg Whitfield2008-12-01T22:26:26Z2008-12-01T22:26:26Z<p>There is another alternative using P4Win. When the submitted changelist pane has focus, a CTRL+F lets you do an arbitrary text search, which includes changelist descriptions.</p>
<p>The only limitation is that it searches just those changelists that have been fetched from the server, so you may need to up the number retrieved (via tha Options dialog).</p>
<p>There is a feature request in to add this to P4V too - if you want this then please email support@perforce.comn to add your vote to it.</p>
http://stackoverflow.com/questions/134103/how-do-you-search-the-text-of-changelist-descriptions-in-perforce/800038#8000380Answer by Nathan for How do you search the text of changelist descriptions in Perforce?Nathan2009-04-28T22:08:42Z2009-04-28T22:08:42Z<p>Yeah I wish they would put it into P4V not sure why they didn't. Someone is coming out with a nice history browsing tool that I am looking forward to: <a href="http://www.eddiescholtz.com/blog/archives/99" rel="nofollow">http://www.eddiescholtz.com/blog/archives/99</a></p>
http://stackoverflow.com/questions/134103/how-do-you-search-the-text-of-changelist-descriptions-in-perforce/1040551#10405510Answer by WireGuy for How do you search the text of changelist descriptions in Perforce?WireGuy2009-06-24T19:45:51Z2009-06-24T19:45:51Z<p>Eddie on Games posted his Perforce Changelist Search 0.1 at <a href="http://www.eddiescholtz.com/blog/archives/130" rel="nofollow">http://www.eddiescholtz.com/blog/archives/130</a></p>
<p>But, I do like using my favorite text editor with the simple:
p4 changes -s submitted //prog/stuff/main/... >temp.txt</p>
http://stackoverflow.com/questions/134103/how-do-you-search-the-text-of-changelist-descriptions-in-perforce/1571910#15719101Answer by Paul Medcraft for How do you search the text of changelist descriptions in Perforce?Paul Medcraft2009-10-15T11:54:49Z2009-10-15T11:54:49Z<p>p4 changes -L | grep -B 3 searchstring</p>
<p>-B 3 means show 3 lines before the matched string, should be enough to show the change id with for 2 line comments but you can change it as necessary.</p>