We’ll see here how you can automate the addition of SVN keywords to your newly added or imported file in your Subversion repository.
Changes are being made on the client computer, NOT the repository. It means you need to apply the following to every computer accessing the SVN repository.
For files already in the repository, you will need to manually set the keywords this way :
svn propset svn:keywords "Id" file.sh
To set scripts as executable :
svn propset svn:executable ON file.sh
1. Enabling auto properties
Edit ~/.subversion/config
Under the miscellany section, set enable-auto-props to yesRead more