Community technical support mailing list was retired 2010 and replaced with a professional technical support team. For assistance please contact: Pre-sales Technical support via email to sales@march-hare.com.
I am attempting to use this to determine the revisions between a particular tag and the head cvs log -rSOME_TAG::HEAD cvs log -rSOME_TAG:::HEAD produces all the versions prior to SOME_TAG but cvs log -rSOME_TAG::: produces the expected output The head tag appears to work correctly in a cvs update -jSOME_TAG -jHEAD scenario. Gerhard Fiedler wrote: > Tony Cleveland wrote: > >> We have various scripts that rely on the HEAD revision tag. After a >> recent upgrade of our server to cvsnt the head revision does not appear >> to be honored for the cvs log command. >> >> cvs client 2.5.3 build 2260 > > It seems HEAD is interpreted as main branch. At least with "-rHEAD" it > seems I get all revisions on the main branch, and with "-rHEAD." I get only > the last revision on the main branch (usually called HEAD). Which is > consistent with the branch revision selection: > > cvs -H log > ... > -r[revisions] Specify revision(s)s to list. > ... > branch All revisions on the branch. > branch. The last revision on the branch. > ... > > Gerhard