You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Greg Dickie <gr...@max-t.com> on 2002/11/07 21:40:35 UTC

newbie question

Hi,

 I'm new to subversion but it seems quite cool. My question is is there any 
way to define our own properties (eg: for branches and tags)?

thanks alot,
Greg

-- 
Greg Dickie
just a guy
Maximum Throughput
greg@max-t.com

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

Re: newbie question

Posted by Greg Stein <gs...@lyra.org>.
On Thu, Nov 07, 2002 at 04:40:35PM -0500, Greg Dickie wrote:
> 
> Hi,
> 
>  I'm new to subversion but it seems quite cool. My question is is there any 
> way to define our own properties (eg: for branches and tags)?

You certainly can:

$ svn propset my-own-tag-name some-value thisfile
$ svn propset another-name value2 thatfile
$ svn commit -m "set some properties"


Properties are quite orthogonal to branches and tags, so I'm not sure how
they apply to your question. I suspect that you may have a disconnect on how
branches and tags work within Subversion. The simple answer is that SVN
doesn't have branches and tags. You just make (cheap) copies inside your
repository. If you further edit the copy, it's a branch. If you never make
edits, then it's a tag :-)

Cheers,
-g

-- 
Greg Stein, http://www.lyra.org/

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