On Mon, Jul 21, 2014 at 12:13 PM, eberhard speer jr. <[email protected]> wrote:
> ...Seems to me this whole tag thing is not relevant in .Net...

It is relevant - as you say, an svn tag is just a (shallow) copy of a
given revision of an svn repository, it's just a way to give that
revision a permanent URL so that we can later go back to it if needed
- to get the exact source code, compare releases etc.

To create a tag you can just

  svn cp -r NNNN \
    -m "explain your tag" \
    http://svn.apache.org/repos/asf/incubator/devicemap/trunk \
    http://svn.apache.org/repos/asf/incubator/devicemap/tags/releases/NAME

where NNNN is the revision number that you want to tag and NAME the
name of your tag.

-Bertrand

Reply via email to