show/hide this revision's text 2 deleted 457 characters in body

What you actually want is not a way to modify your commits, but something like svn:keywords. Unfortunately, as you can read in the box "Where's $GlobalRev$?" this doesn't really do what you want. Instead, you'll have to write a script to call and parse the output of svnversion and somehow put the result in your files as part of the build.

Now, to answer your literal question it's still fun to think about what you can and can't cannot do in svn hook scripts:

You can't change a commit from a post-commit hook

By the time post-commit hook runs, the commit has already been finalized (as the name implies) so changing files is out of the question. You can only inspect the changes at this point.

You can examine and block can't modify pending commits from a pre-commit hook either

You can examine the content of a pending transaction from a pre-commit hook by using the svnlook tool with the --transaction switch. For example, I imagine but you could use svnlook cat to let your pre-commit script examine the content of any changed or added file, and stop the commit from happening if there were unwanted changes like coding style violations. This is probably not a very good idea because can't change itwould slow down commits.

You can't modify pending commits from a pre-commit hook

If arbitrary changes could be made in a pre-commit hook, then obviously the server would need to report back these changes to the svn client. Otherwise the client would think his files are at the committed revision, while they are actually different. If the svn client would accept such reported changes it would lead to the possibility of your work being wiped out by a commit. That would be a surprising feature to have for a version control system, to put it mildly. Needless to say subversion does not allow this.

show/hide this revision's text 1

What you actually want is not a way to modify your commits, but something like svn:keywords. Unfortunately, as you can read in the box "Where's $GlobalRev$?" this doesn't really do what you want. Instead, you'll have to write a script to call and parse the output of svnversion and somehow put the result in your files as part of the build.

Now, to answer your literal question it's still fun to think about what you can and can't do in svn hook scripts:

You can't change a commit from a post-commit hook

By the time post-commit hook runs, the commit has already been finalized (as the name implies) so changing files is out of the question. You can only inspect the changes at this point.

You can examine and block pending commits from a pre-commit hook

You can examine the content of a pending transaction from a pre-commit hook by using the svnlook tool with the --transaction switch. For example, I imagine you could use svnlook cat to let your pre-commit script examine the content of any changed or added file, and stop the commit from happening if there were unwanted changes like coding style violations. This is probably not a very good idea because it would slow down commits.

You can't modify pending commits from a pre-commit hook

If arbitrary changes could be made in a pre-commit hook, then obviously the server would need to report back these changes to the svn client. Otherwise the client would think his files are at the committed revision, while they are actually different. If the svn client would accept such reported changes it would lead to the possibility of your work being wiped out by a commit. That would be a surprising feature to have for a version control system, to put it mildly. Needless to say subversion does not allow this.