How to programatically get the latest commit date on a CVS checkout - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T05:41:24Zhttp://stackoverflow.com/feeds/question/1044651http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1044651/how-to-programatically-get-the-latest-commit-date-on-a-cvs-checkout0How to programatically get the latest commit date on a CVS checkoutThomas Vander Stichele2009-06-25T15:39:48Z2009-06-25T17:36:21Z
<p>For a script I'm working on to implement bisection using CVS, I want to figure out what the 'timestamp' is of the current checkout. In other words, if I'm on a branch/tag, I want to know the last timestamp something got commited to that branch/tag. If I'm on head, I want to know the last timestamp on head.</p>
<p>I know this is not 100% guaranteed, since cvs checkouts can have different files at different timestamps/revisions/..., but a correct-in-most-cases solution is fine by me.</p>
<p>Naively, I thought that</p>
<pre><code>cvs log -N | grep ^date: | sort | tail -n 1 | cut -d\; -f1
</code></pre>
<p>was going to do it, but it turns out it goes through the whole commit history, for all branches/tags.</p>
http://stackoverflow.com/questions/1044651/how-to-programatically-get-the-latest-commit-date-on-a-cvs-checkout/1045242#10452421Answer by nik for How to programatically get the latest commit date on a CVS checkoutnik2009-06-25T17:36:21Z2009-06-25T17:36:21Z<p>CVS files on a branch being at different timestamps, the accuracy of picking any one file to get the last time-info for the branch is hardly worth.</p>
<p>But, it can get better if there is some file which will be changed often.
For, example, in one of my bases, there is a <code>version.h</code> file which is updated on every version shift (minor or major). That can be used for time-info on the current version (again not accurate to all the files in the branch, but it does give a bottom line).</p>
<p>So, if you know a file that can give you a bottom line value,</p>
<pre><code>cvs log path/to/version.h -r branch/tag | grep ^date | sort | tail -1
</code></pre>
<p>will give you the last timestamp for that file.</p>
<p><hr /></p>
<p>If you can enumerate the entire file set of the base like this,</p>
<pre><code>find /base/dir -type f | grep -v CVS > files.txt
</code></pre>
<p>then, you can loop the cvs command above for each file,</p>
<pre><code>rm -f allFiles.txt
for f in $(<files.txt); do cvs log $f ...etc... tail -1 >> allFiles.txt
sort allFiles.txt | tail -1
</code></pre>
<p>Last line of the sort will give you exact date for the most recent commit.<br />
Alas, you will not get the file name (which can also be done with some more fu)</p>