Return-Path: Delivered-To: apmail-xml-cocoon-dev-archive@xml.apache.org Received: (qmail 34612 invoked by uid 500); 4 Dec 2002 16:16:09 -0000 Mailing-List: contact cocoon-dev-help@xml.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: cocoon-dev@xml.apache.org Delivered-To: mailing list cocoon-dev@xml.apache.org Received: (qmail 34600 invoked from network); 4 Dec 2002 16:16:08 -0000 Message-ID: <3DEE290B.2090206@volantis.com> Date: Wed, 04 Dec 2002 16:10:51 +0000 From: Paul Duffin User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.0) Gecko/20020529 X-Accept-Language: en-us, en MIME-Version: 1.0 To: cocoon-dev@xml.apache.org Subject: Re: cvs sticky tag problem References: <20021204153919.GA17351@bremen.dvs1.informatik.tu-darmstadt.de> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Christian Haul wrote: > On 03.Dec.2002 -- 11:34 PM, Diana Shannon wrote: > >>I was trying to sync HEAD and release versions of >> src/documentation/xdocs/userdocs/actions/database-actions.xml >> >>but when I try to commit the updated version to the release branch, I >>get: >> cvs server: sticky tag `cocoon_2_0_3_branch' for file >>`database-actions.xml' is not a branch >> >>Any suggestions? > > > So this is not only me being bugged by this :-/ Well, OK. As you may have > seen, I have removed and added the file back again to > cocoon_2_0_3_branch It did not go smoothly, however. In the end I have > edited the CVS/Tag file in my local checkout and changed the "N" to a > "T". Now, it appears to have solved this problem. At least the commit > mail looks fine. > > Chris. The problem almost certainly occurred because you did a cvs update and specified a particular version of the file. e.g. cvs update -r 1.2 file.xml Attempting to commit changes to that file will fail because as far as CVS is concerned you are trying to change version 1.2 of the file because the file has a sticky tag of 1.2. Use 'cvs status file.xml' to see the sticky tag which usually refers to a branch but in this case refers to a particular version. If you want to revert back to an older version of a file use. cvs update -r 1.2 -p file.xml > file.xml The -p sends the output to standard out 'avoiding stickiness'. --------------------------------------------------------------------- To unsubscribe, e-mail: cocoon-dev-unsubscribe@xml.apache.org For additional commands, email: cocoon-dev-help@xml.apache.org