Dirk Riehle wrote:

>
> I have a short CVS question please: How do I go from a particular file  
> revision like
>
> pgsql/cvs/pgsql/src/backend/parser/parse_relation.c.1.3
>
> to the complete commit?

Also try cvs2cl, which might help you:

    common_args="--revisions --no-indent --no-wrap --separate-header"
    branch_arg=""
    branch=$(cvs status configure.in | grep 'Sticky Tag' | awk '{print $3}')
    if [ $branch != "(none)" ]; then
        branch_arg="--follow $branch"
    fi
    if [ ! -f ChangeLog ]; then
        cvs2cl $common_args $branch_arg
    else
        cvs2cl $common_args $branch_arg --accum
    fi


-- 
Alvaro Herrera                                http://www.CommandPrompt.com/
The PostgreSQL Company - Command Prompt, Inc.

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

Reply via email to