Return-Path: X-Original-To: apmail-subversion-users-archive@minotaur.apache.org Delivered-To: apmail-subversion-users-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 42DDBED0D for ; Tue, 12 Feb 2013 08:06:55 +0000 (UTC) Received: (qmail 85194 invoked by uid 500); 12 Feb 2013 08:06:54 -0000 Delivered-To: apmail-subversion-users-archive@subversion.apache.org Received: (qmail 85019 invoked by uid 500); 12 Feb 2013 08:06:53 -0000 Mailing-List: contact users-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list users@subversion.apache.org Delivered-To: moderator for users@subversion.apache.org Received: (qmail 59727 invoked by uid 99); 12 Feb 2013 07:56:47 -0000 X-ASF-Spam-Status: No, hits=2.0 required=5.0 tests=SPF_NEUTRAL,URI_HEX X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Date: Mon, 11 Feb 2013 23:56:21 -0800 (PST) From: Stephan To: users@subversion.apache.org Message-ID: <1360655781735-178187.post@n5.nabble.com> Subject: Branching recursive over subprojects MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Hello, My projects are organized in separate subversion projects. Dependencies are realized as external objects pointing to another project: projectA/ trunk/ gui/ core/ modul1/ (external object who points to a separat project modul1) tags/ release_1.0.0/ bugfix_1.0.1/ bugfix_1.0.2/ release_1.1.0/ bugfix_1.1.1/ branches/ version_1.0/ version_1.1/ The subproject modul1 has also subprojects. modul1/ trunk/ functionXY/ utilities/ (external object who points to a separat project utilities) tags/ branches/ If I release a new version of projectA, I create a new branch (e.g. version_1.1) and a new tag (e.g. release_1.1.0). Bugfixes are developed on the branch and saved as tag (e.g. bugfix_1.1.1). There are two problems: - If I create a tag with fix revisions of the external objects, the fix revision is only valid for the direct depending projects (here modul1) but not for nested projects (here utilities). - If I make a modification on branch (e.g. version_1.1) of projectA in modul1, then I must commit it to trunk of modul1. Additionaly I have to update the fixed revision number of the external object modul1 in projectA. Is there a preferred way to solve this problems? In my opinion for all subprojects a branch should be created if I branch the top project (here projectA). And when I tag the top project in all subproject a tag should be created too. Is there a automatic way to do that? Thanks, Stephan -- View this message in context: http://subversion.1072662.n5.nabble.com/Branching-recursive-over-subprojects-tp178187.html Sent from the Subversion Users mailing list archive at Nabble.com.