You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Gr...@dialog.com.au on 2006/11/20 00:32:32 UTC

SVN tagging of working copies

Hi,

I couldn't find this question anywhere yet.

I currently have the following trunk structure.

trunk
- common
- subproject1
- project1
- project2

I would like to use the SVN tagging to simply tag the trunk, but only the 
directories that are needed

ie -  /tags/project1-1.0.0-rc1 would have
- common
- subproject1
- project1

while /tags/project2-1.0.0-rc2 would have
- common
- subproject1
- project2

Is this currently possible?

And how would I do so if it is?

Thanks Grant 

______________________________________________________________________
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
______________________________________________________________________

Re: SVN tagging of working copies

Posted by Steve Williams <st...@kromestudios.com>.
Grant_Quimby@dialog.com.au wrote:
>
> Hi,
>
> I couldn't find this question anywhere yet.
>
> I currently have the following trunk structure.
>
> trunk
> - common
> - subproject1
> - project1
> - project2
>
> I would like to use the SVN tagging to simply tag the trunk, but only 
> the directories that are needed
>
> ie -  /tags/project1-1.0.0-rc1 would have
> - common
> - subproject1
> - project1
>
> while /tags/project2-1.0.0-rc2 would have
> - common
> - subproject1
> - project2
>
> Is this currently possible?
>
> And how would I do so if it is?

Make the tag directory, then copy the directories you want one by one.

svn mkdir URL/tags/project1-1.0.0-rc1
svn cp URL/trunk/common URL/tags/project1-1.0.0-rc1/common
svn cp URL/trunk/subproject1 URL/tags/project1-1.0.0-rc1/subproject1
svn cp URL/trunk/project1 URL/tags/project1-1.0.0-rc1/project1

svn mkdir URL/tags/project2-1.0.0-rc1
svn cp URL/trunk/common URL/tags/project2-1.0.0-rc1/common
svn cp URL/trunk/subproject1 URL/tags/project2-1.0.0-rc1/subproject1
svn cp URL/trunk/project2 URL/tags/project2-1.0.0-rc1/project2


-- 
Sly




This message and its attachments may contain legally privileged or confidential information. This message is intended for the use of the individual or entity to which it is addressed. If you are not the addressee indicated in this message, or the employee or agent responsible for delivering the message to the intended recipient, you may not copy or deliver this message or its attachments to anyone. Rather, you should permanently delete this message and its attachments and kindly notify the sender by reply e-mail. Any content of this message and its attachments, which does not relate to the official business of the sending company must be taken not to have been sent or endorsed by the sending company or any of its related entities. No warranty is made that the e-mail or attachment(s) are free from computer virus or other defect.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org