tzmatt7447
tzmatt7447

Reputation: 2399

How to display SVN build iteration on a webpage?

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

Answers (1)

tangens
tangens

Reputation: 39753

You could use svn keywords like $Revision$ to show this information.

Upvotes: 1

Related Questions