Hi how to get the last modified by value for a file using SVNkit. Scenario : the file is updated from SVN and itr is available in local repo(working copy).
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You could use svn keywords http://svnbook.red-bean.com/en/1.4/svn.advanced.props.special.keywords.html 'modified by' should be author. You have to ensure, that the file with the keywords will be changed before every check in. This could be done with an ant script. The keyword could be used in a constant with a second constant extracting the interesting part:
|
|||
|
|
|
|||
|
|
is working fine. |
|||
|
|