Reputation: 2399
We're building a PHP site and are using a SVN system to track changes. Is there a dynamic simple way of displaying the "version" / "revision" of the code changes directly in the html generated by our php script?
That way, our test users can identify what version is present on their system.
Upvotes: 0
Views: 112
Reputation: 39753
You could use svn keywords like $Revision$
to show this information.
Upvotes: 1