RE: Script to show commiters to branch?

2001-06-25 Thread Andy Baker
Something along the lines of the quick'n'dirty below should get you started (beware of files that don't contain the branch though) cvs -Q rlog -rbranch file 2/dev/null \ | awk '/^RCS file: / {file=$3} /^revision [0-9][0-9]*\./ {rev=$2} /^date: .* author:/

Re: Script to show commiters to branch?

2001-06-25 Thread Robert J. Clark
Hi Chuck, On Mon, 25 Jun 2001 11:23:41 -0500 [EMAIL PROTECTED] wrote: I need to write a script that produces a list of everyone that has commited to a branch (or the trunk) for a specific file. Before I and write it, I thought I would check if anyone on the list already has something