Monday, October 3, 2011

Creating/Deleting a SVN Tag

Create Tag:
Creating a tag in SVN means that you copy the entire trunk to another folder in the "tags" folder.
Command: svn  copy  trunk/   tags/tag_name

Delete Tag:
svn delete "your url" -m "your comment...."

When you run the mvn release:prepare command it will automatically create the tag in SVN repository. You don't have to create it manually.

No comments:

Post a Comment