Question about "cvs update"
Christopher Faylor
cgf-use-the-mailinglist-please@sourceware.org
Mon Oct 11 15:25:00 GMT 2010
On Mon, Oct 11, 2010 at 03:49:56PM +0800, Hui Zhu wrote:
>Hi guys,
>
>"cvs update -d" will make the src directory include a lot of other
>softwares like binutils, sid and so on.
>
>I want keep the directory just have the file of GDB. I tried "cvs
>update -dP". But it still tried to checkout the files of other
>softwares.
>
>Could someone tell me how to update the all src directory and do not
>co the files of other softwares.
cvs update -l
for f in */.; do
(cd $f && exec cvs update -d)
done
cgf
More information about the Gdb
mailing list