Received: from localhost (unknown [200.46.204.183]) by developer.postgresql.org (Postfix) with ESMTP id 718A02E0077 for ; Wed, 2 Apr 2008 16:05:29 -0300 (ADT) Received: from developer.postgresql.org ([200.46.204.71]) by localhost (mx1.hub.org [200.46.204.183]) (amavisd-maia, port 10024) with ESMTP id 46021-01 for ; Wed, 2 Apr 2008 16:05:20 -0300 (ADT) X-Greylist: from auto-whitelisted by SQLgrey-1.7.5 Received: from cronos.madness.at (madness.at [217.196.146.217]) by developer.postgresql.org (Postfix) with ESMTP id 2D1D22E0076 for ; Wed, 2 Apr 2008 16:05:20 -0300 (ADT) Received: from mastermind.kaltenbrunner.cc ([83.215.233.60]) by cronos.madness.at with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.63) (envelope-from ) id 1Jh8Ge-0001iY-8Y; Wed, 02 Apr 2008 21:05:16 +0200 Message-ID: <47F3D8EC.5000100@kaltenbrunner.cc> Date: Wed, 02 Apr 2008 21:05:16 +0200 From: Stefan Kaltenbrunner User-Agent: Mozilla-Thunderbird 2.0.0.9 (X11/20080110) MIME-Version: 1.0 To: Peter Eisentraut CC: pgsql-www@postgresql.org Subject: Re: CVS rsync service is dropping some files References: <200804021821.05000.peter_e@gmx.net> In-Reply-To: <200804021821.05000.peter_e@gmx.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: Maia Mailguard 1.0.1 X-Archive-Number: 200804/2 X-Sequence-Number: 14750 Peter Eisentraut wrote: > The CVS rsync service, as described at > , fails to provide the > directories pgsql/src/interfaces/jdbc/org/postgresql/core/ and > pgsql/contrib/retep/uk/org/retep/xml/core/. I guess there is an exclude list > somewhere that thinks these might be core dump files. Could this please be > investigated and fixed? *sigh* - took me a while to recognize that it's actually the commandline in the docs(anoncvs config is fine) that are resulting in that problem - we recommend -C as an rsync parameter and the docs for that state: -C, --cvs-exclude This is a useful shorthand for excluding a broad range of files that you often don't want to transfer between systems. It uses the same algorithm that CVS uses to determine if a file should be ignored. The exclude list is initialized to: RCS SCCS CVS CVS.adm RCSLOG cvslog.* tags TAGS .make.state .nse_depinfo *~ #* .#* ,* _$* *$ *.old *.bak *.BAK *.orig *.rej .del-* *.a *.olb *.o *.obj *.so *.exe *.Z *.elc *.ln core .svn/ so this is actually a documentation bug - not an infrastructure bug :-) Stefan