Re: listing new files in a local directory

2004-06-30 Thread Brian Gough
[EMAIL PROTECTED] (John Hanny) writes: I'd like a cvs command that tells me what files in the current directory are new. One hack that I've been using is cvs update. The files that are prefixed by '?' are new. Unfortunately, this has the side-effect of updating my local directory files if

listing new files in a local directory

2004-06-29 Thread John Hanny
Hey, I'd like a cvs command that tells me what files in the current directory are new. One hack that I've been using is cvs update. The files that are prefixed by '?' are new. Unfortunately, this has the side-effect of updating my local directory files if they have been changed in the repository.

Re: listing new files in a local directory

2004-06-29 Thread Pierre Asselin
John Hanny [EMAIL PROTECTED] wrote: I'd like a cvs command that tells me what files in the current directory are new. One hack that I've been using is cvs update. The files that are prefixed by '?' are new. Unfortunately, this has the side-effect of updating my local directory files if they

RE: listing new files in a local directory

2004-06-29 Thread Jim.Hyslop
[EMAIL PROTECTED] wrote: Use the -n flag to turn off the side-effect. cvs -nq update -I! -ICVS | grep \^\\\? Why are you suppressing the ignored files? This could give a bunch of spurious new files that you want to ignore. -- Jim Hyslop Senior Software Designer Leitch Technology

Re: listing new files in a local directory

2004-06-29 Thread Pierre Asselin
Jim.Hyslop [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: Use the -n flag to turn off the side-effect. cvs -nq update -I! -ICVS | grep \^\\\? Why are you suppressing the ignored files? This could give a bunch of spurious new files that you want to ignore. Because that's how I