...
All commits should contain a commit message describing the change set. This message must contain the key of the Jira issue related to this commit, this will make all subversion aware applications, able to map issues to change sets.
Adding new files to svn
If you commit a new file directly to our SVN repository, you must add the SVN property (svn:keywords) for this file to the value: URL Revision Author Date Id
Eclipse will add this automatically for you for all new files if you make sure that auto-props are enabled for subversion. The following modifications to the file $HOME/.subversion/config needs to be made
Add or uncomment the line
Code Block |
---|
enable-auto-props = yes
|
Add the following to the end of the file:
Code Block |
---|
[auto-props]
*.java = svn:keywords=URL Revision Author Date Id
*.xml = svn:keywords=URL Revision Author Date Id
*.jsp = svn:keywords=URL Revision Author Date Id
*.css = svn:keywords=URL Revision Author Date Id
*.properties = svn:keywords=URL Revision Author Date Id
|