info-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: get conflict files


From: Tobias Brox
Subject: Re: get conflict files
Date: Thu, 27 Sep 2001 18:50:03 +0400
User-agent: Mutt/1.0.1i

[raptor - Thu at 10:56:51AM +0300]
> hi,
> 
> How can I get a list all problem files i.e. those with conflicts, those that
> need update etc....

Run "cvs -n update" in the work directory, and eventually grep out what you
want.

cvs -n update 2>&1 | grep "^C " 
... will find all files with conflicts,

cvs -n update 2>&1 | grep "^U "
... will find all files that needs to be updated,

cvs -n update 2>&1 | grep "^M "
... will find all files that are changed and might need to be committed to
the repository,

etc.

--
Unemployed hacker
Will program for food!
http://ccs.custompublish.com/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]