I have a SVN where I am commenting some perl scripts. All the scripts are separate and have different tasks. Currently I am just using 'svn export
' to release these scripts. Can anyone please suggest me how to properly release the software from SVN and put the version number with each release.
**
EDIT
**
I did some investigation and found a method using set properties. e.g.
svn propset svn:keywords "Id" test/test.txt
The keyword 'Id
' is a compressed combination of the other keywords i.e. Filename, rev number, last modified, and username.
With that I also need to put below in my perl script
$Id$
After commit it will print the information in my script. Just wondering if this is the correct way of releasing the perl scripts or anyone can suggest me better options. Also please advise how to auto set the properties on subversion.