RE: how to extract two versions of file for comparison

2005-07-15 Thread Dave Korn
Original Message From: Dave Korn Sent: 14 July 2005 14:31 Original Message From: NoPlatitudes Sent: 14 July 2005 14:16 I am trying to get the difference between the latest working version of a file and a previous version. I need to use a third party tool to examine this

how to extract two versions of file for comparison

2005-07-14 Thread NoPlatitudes
I am trying to get the difference between the latest working version of a file and a previous version. I need to use a third party tool to examine this difference (cvs's diff functionality won't do what I want here). I want the newest version to remain in my 'standard' working directory, and I'd

Re: how to extract two versions of file for comparison

2005-07-14 Thread Andy Jones
try something like: cvs update -r [version] -p [filename] temp/[filename] On 14 Jul 2005 06:16:04 -0700, NoPlatitudes [EMAIL PROTECTED] wrote: I am trying to get the difference between the latest working version of a file and a previous version. I need to use a third party tool to examine

Re: how to extract two versions of file for comparison

2005-07-14 Thread NoPlatitudes
Many thanks... ___ Info-cvs mailing list Info-cvs@gnu.org http://lists.gnu.org/mailman/listinfo/info-cvs

RE: how to extract two versions of file for comparison

2005-07-14 Thread Dave Korn
Original Message From: NoPlatitudes Sent: 14 July 2005 14:16 I am trying to get the difference between the latest working version of a file and a previous version. I need to use a third party tool to examine this difference (cvs's diff functionality won't do what I want here). I