Reputation: 89
I want the functionality of this (SVN Tortoise keyword substitution)
$Rev $
in each and every file of the repository without manually adding the keyword in them.
Is there a way to get the revision number appear in each file without doing all that?
Upvotes: 1
Views: 107
Reputation: 28194
No. The only way to have keyword substitution on files in Subversion is to:
svn:keywords
property appropriately on each file.If you do not do both of these things, Subversion does not know where to expand the keyword, nor that it has to expand it at all.
Upvotes: 1