home directory 의 ~/.subversion/config 파일에서 다음의 설정을 추가해 줍니다.
[miscellany]
enable-auto-props = yes
[auto-props]
*.java = svn:keywords=Author Date Id Revision;svn:eol-style=native
키워드의 리스트는 다음과 같습니다.
Author, Date, Header, Id, Log, Locker, Name, RCSFile, Revision, Source, State
이 설정을 마치면, commit 을 할 때 id tag 가 자동으로 갱신이 됩니다. 이미 repository에 추가 되어 있는 파일들의 tag 내용을 갱신 시키려면 다음과 같이 하시면 됩니다.
shell> svn up
shell> svn propset svn:keywords "Author Date Id Rev" file_name
shell> svn commit -m "Adding Id and Rev property to all files"
출처: http://ajmoore.blogspot.com/2007/12/enabling-cvs-id-tag-for-svn.html