Linux Ask!

Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.

Jul 232010
 

Creating a simple tag in SVN

Answer:

In SVN, a tag is a “snapshot” of a project in time. By creating a tag of a project, this allow you to easily reference a particular version sometimes later.

To create a tag, use svn copy:

# svn copy http://example.com/svn/repos/demo/trunk \
           http://example.com/svn/repos/demo/tags/release-1.0.0 \
      -m "Tagging the 1.0.0 release of the 'demo' project."

Committed revision 124.

 Leave a Reply

(required)

(required)

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>