Alex Valentine wrote:

> One of our developers has a simple task. He wants to move a boatload of
> files from one directory /lib to a new directory /src/lib. How can this
> be done in CVS without having to individually add and remove each file?
> 
> 

X=`echo *pattern1* *pattern2*`
mv $X /otherlib
cvs remove $X
cvs ci -m "Moved to /otherlib" $X
cd /otherlib
cvs add $X
cvs ci -m "Moved from /lib" $X

-- robin

_______________________________________________
Info-cvs mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/info-cvs

Reply via email to