I am using Ankhsvn for a solo projec开发者_如何学Ct. I would like to version this project and add a little log tag to specify release notes. Is this possible? I believe this is the tag feature, but it requests a folder to use which doesn't exist on my system (ie not the repository folder).
Tags are used to identify a special revision of a product. In subversion this is typically done by creating a copy of the trunk folder under a tags folder (subversion does not have real support for tags and little support for branches). When you want specific log messages in you release notes, you can
- add a special text in the log message
- add a svn revision property on the revision which contains the desired log item
- Gather all logs from a special directory (like gather all messages from the last commit in /tags).
I would use the first one, since it is the easiest way to use.
精彩评论