post commit hook to update a file under version - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T06:52:22Zhttp://stackoverflow.com/feeds/question/650168http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/650168/post-commit-hook-to-update-a-file-under-version2post commit hook to update a file under versionsolomongaby2009-03-16T12:16:12Z2009-03-17T00:13:39Z
<p>Hello </p>
<p>I have made a file called version.ini that is under version control (/trunk/version.ini)
i now wanted to make a post commit hook to update that file with the latest version.
But i dont know what command can do that. I know i have this params:</p>
<pre><code>#!/bin/sh
REPOS = "$1"
REV = "$2"
</code></pre>
<p>But how can i replace the content of that file without making a new revision ? and still have those changes in my repo ?</p>
<p>UPDATE:
Since maybe i havent been clear i will try a more detailed explination:
Lets say i have this repo: /svn/repos/project/trunk/ and in it i have a file called version.ini that is under version control. What i want to do is that on every commit update that file to the new revision. Lets say that the current revision is 263 i want that file to have 263 writen in it.
And to respond to an answer bellow you cant use keywords since they only work if i update that file and i dont want to do it.</p>
<p>Hope i made sense, and thanks for any help given.
Cheers</p>
http://stackoverflow.com/questions/650168/post-commit-hook-to-update-a-file-under-version/650241#6502414Answer by Aaron Digulla for post commit hook to update a file under versionAaron Digulla2009-03-16T12:36:20Z2009-03-16T16:48:53Z<p>There is no way to change anything in the repo without modifying the revision number.</p>
<p>The solution is to put <a href="http://svnbook.red-bean.com/en/1.0/ch07s02.html" rel="nofollow">special keywords</a> (search for <code>svn:keywords</code>) into the file and have SVN replace them during checkout. It will seem that these values come from the repository but the representation of the file in the repository will not change.</p>
<p>You're probably looking for $LastChangedRevision$ (or $Rev$ for short).</p>
<p>Another solution is to add a rule to your build tool/Makefile/whatever which uses <code>svn info</code> on the root directory of your project to determine the current revision and puts that into a temporary file (which is <em>not</em> added to your repo).</p>
http://stackoverflow.com/questions/650168/post-commit-hook-to-update-a-file-under-version/652610#6526102Answer by wcoenen for post commit hook to update a file under versionwcoenen2009-03-17T00:02:18Z2009-03-17T00:13:39Z<p>What you actually want is not a way to modify your commits, but something like <a href="http://svnbook.red-bean.com/en/1.5/svn.advanced.props.special.keywords.html" rel="nofollow">svn:keywords</a>. 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 <a href="http://svnbook.red-bean.com/en/1.5/svn.ref.svnversion.re.html" rel="nofollow">svnversion</a> and somehow put the result in your files as part of the build.</p>
<p>Now, to answer your literal question it's still fun to think about what you can and cannot do in svn hook scripts:</p>
<p><strong>You can't change a commit from a post-commit hook</strong></p>
<p>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.</p>
<p><strong>You can't modify pending commits from a pre-commit hook either</strong></p>
<p>You can examine the content of a pending transaction from a pre-commit hook by using the <a href="http://svnbook.red-bean.com/en/1.5/svn.ref.svnlook.html" rel="nofollow">svnlook</a> tool with the --transaction switch, but you can't change it.</p>
<p>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 <em>being wiped out by a commit</em>. 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.</p>