Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

which probably does not do exactly what you intend. TO fix this you need to copy trunk to tags. This can be done in couple of ways:

1. Find revision of the files that you committed (appears in output of svn commit, say it is 6404), then use it with psvn tag:

psvn tag -e 6404 V00-28-08

2. Use svn copy:

svn copy $SIT_SVN/package/trunk $SIT_SVN/package/tags/V00-28-08

...