How to access the current Subversion build number? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T16:20:37Zhttp://stackoverflow.com/feeds/question/110175http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/110175/how-to-access-the-current-subversion-build-number12How to access the current Subversion build number?public static2008-09-21T03:34:56Z2009-08-29T13:46:29Z
<p>duplicate: <a href="http://stackoverflow.com/questions/163/how-do-i-sync-the-svn-revision-number-with-my-asp-net-web-site">How do I sync the SVN revision number with my ASP.NET web site?</a>
<hr/></p>
<p>How can you automatically import the latest build/revision number in subversion?</p>
<p>The goal would be to have that number visible on your webpage footer like SO does.</p>
http://stackoverflow.com/questions/110175/how-to-access-the-current-subversion-build-number/110180#1101805Answer by Greg Hewgill for How to access the current Subversion build number?Greg Hewgill2008-09-21T03:38:02Z2008-09-21T03:38:02Z<p><code>svn info</code> gives this information:</p>
<pre><code>svn info | awk '/^Revision:/ { print $2 }'
</code></pre>
http://stackoverflow.com/questions/110175/how-to-access-the-current-subversion-build-number/110182#1101821Answer by coppro for How to access the current Subversion build number?coppro2008-09-21T03:38:26Z2008-09-21T03:38:26Z<p>Well, you can run 'svn info' to determine the current revision number, and you could probably extract that pretty easily with a regex, like "Revision: ([0-9]+)".</p>
http://stackoverflow.com/questions/110175/how-to-access-the-current-subversion-build-number/110185#1101855Answer by Michael Stum for How to access the current Subversion build number?Michael Stum2008-09-21T03:40:20Z2008-09-21T04:17:54Z<pre><code>svn info <Repository-URL>
</code></pre>
<p>or</p>
<pre><code>svn info --xml <Repository-URL>
</code></pre>
<p>Then look at the result. For xml, parse /info/entry/@revision for the revision of the repository (151 in this example) or /info/entry/commit/@revision for the revision of the last commit against this path (133, useful when working with tags):</p>
<pre><code><?xml version="1.0"?>
<info>
<entry
kind="dir"
path="cmdtools"
revision="151">
<url>http://myserver/svn/stumde/cmdtools</url>
<repository>
<root>http://myserver/svn/stumde</root>
<uuid>a148ce7d-da11-c240-b47f-6810ff02934c</uuid>
</repository>
<commit
revision="133">
<author>mstum</author>
<date>2008-07-12T17:09:08.315246Z</date>
</commit>
</entry>
</info>
</code></pre>
<p>I wrote a tool (<a href="http://www.stum.de/various-tools/cmdtools/" rel="nofollow">cmdnetsvnrev</a>, source code included) for myself which replaces the Revision in my AssemblyInfo.cs files. It's limited to that purpose though, but generally svn info and then processing is the way to go.</p>
http://stackoverflow.com/questions/110175/how-to-access-the-current-subversion-build-number/110188#1101881Answer by Brian R. Bondy for How to access the current Subversion build number?Brian R. Bondy2008-09-21T03:43:09Z2008-09-21T03:43:09Z<p>If you have tortoise SVN you can use SubWCRev.exe</p>
<p>Create a file called: </p>
<p>RevisionInfo.tmpl</p>
<pre><code>SvnRevision = $WCREV$;
</code></pre>
<p>Then execute this command:</p>
<pre><code>SubWCRev.exe . RevisionInfo.tmpl RevisionInfo.txt
</code></pre>
<p>It will create a file ReivisonInfo.txt with your revision number as follows:</p>
<pre><code>SvnRevision = 5000;
</code></pre>
<p>But instead of using the .txt you could use whatever source file you want, and have access to the reivsion number within your source code.</p>
http://stackoverflow.com/questions/110175/how-to-access-the-current-subversion-build-number/110192#11019210Answer by Bob Nadler for How to access the current Subversion build number?Bob Nadler2008-09-21T03:45:43Z2008-09-21T03:45:43Z<p>Add svn:keywords to the SVN properties of the source file:</p>
<pre><code>svn:keywords Revision
</code></pre>
<p>Then in the source file include:</p>
<pre><code>private const string REVISION = "$Revision$";
</code></pre>
<p>The revision will be updated with the revision number at the next commit to (e.g.) <code>"$Revision: 4455$"</code>. You can parse this string to extract just the revision number.</p>
http://stackoverflow.com/questions/110175/how-to-access-the-current-subversion-build-number/110197#1101971Answer by Omer Zak for How to access the current Subversion build number?Omer Zak2008-09-21T03:51:01Z2008-09-21T03:51:01Z<p>If you are running under GNU/Linux, cd to the working copy's directory and run:</p>
<pre>svn -u status | grep Status\ against\ revision: | awk '{print $4}'</pre>
<p>From my experience, svn info does not give reliable numbers after renaming directories.</p>
http://stackoverflow.com/questions/110175/how-to-access-the-current-subversion-build-number/110206#1102062Answer by Chris Conway for How to access the current Subversion build number?Chris Conway2008-09-21T03:54:11Z2008-09-21T03:54:11Z<p>You don't say what programming language/framework you're using. Here's how to do it in Python using <a href="http://pysvn.tigris.org" rel="nofollow">PySVN</a></p>
<pre><code>import pysvn
repo = REPOSITORY_LOCATION
rev = pysvn.Revision( pysvn.opt_revision_kind.head )
client = pysvn.Client()
info = client.info2(repo,revision=rev,recurse=False)
revno = info[0][1].rev.number # revision number as an integer
</code></pre>
http://stackoverflow.com/questions/110175/how-to-access-the-current-subversion-build-number/110207#1102070Answer by W. Craig Trader for How to access the current Subversion build number?W. Craig Trader2008-09-21T03:54:25Z2008-09-21T03:54:25Z<p>You want the Subversion <strong>info</strong> subcommand, as follows:</p>
<pre><code>$ svn info .
Path: .
URL: http://trac-hacks.org/svn/tracdeveloperplugin/trunk
Repository Root: http://trac-hacks.org/svn
Repository UUID: 7322e99d-02ea-0310-aa39-e9a107903beb
Revision: 4190
Node Kind: directory
Schedule: normal
Last Changed Author: coderanger
Last Changed Rev: 3397
Last Changed Date: 2008-03-19 00:49:02 -0400 (Wed, 19 Mar 2008)
</code></pre>
<p>In this case, there are two revision numbers: 4190 and 3397. 4190 is the last revision number for the repository, and 3397 is the revision number of the last change to the subtree that this workspace was checked out from. You can specify a path to a workspace, or a URL to a repository.</p>
<p>A C# fragment to extract this under Windows would look something like this:</p>
<pre><code>Process process = new Process();
process.StartInfo.FileName = @"svn.exe";
process.StartInfo.Arguments = String.Format(@"info {0}", path);
process.StartInfo.UseShellExecute = false;
process.StartInfo.RedirectStandardOutput = true;
process.Start();
// Parse the svn info output for something like "Last Changed Rev: 1234"
using (StreamReader output = process.StandardOutput)
{
Regex LCR = new Regex(@"Last Changed Rev: (\d+)");
string line;
while ((line = output.ReadLine()) != null)
{
Match match = LCR.Match(line);
if (match.Success)
{
revision = match.Groups[1].Value;
}
}
}
</code></pre>
<p>(In my case, we use the Subversion revision as part of the version number for assemblies.)</p>
http://stackoverflow.com/questions/110175/how-to-access-the-current-subversion-build-number/110813#1108133Answer by Bert Huijben for How to access the current Subversion build number?Bert Huijben2008-09-21T11:36:02Z2008-09-21T11:36:02Z<p>Using c# and SharpSvn (from <a href="http://sharpsvn.net" rel="nofollow">http://sharpsvn.net</a>) the code would be:</p>
<pre><code>//using SharpSvn;
long revision = -1;
using(SvnClient client = new SvnClient())
{
client.Info(path,
delegate(object sender, SvnInfoEventArgs e)
{
revision = e.Revision;
});
}
</code></pre>
http://stackoverflow.com/questions/110175/how-to-access-the-current-subversion-build-number/111173#11117319Answer by Charles Duffy for How to access the current Subversion build number?Charles Duffy2008-09-21T14:58:58Z2008-09-22T16:39:52Z<p>Have your build process call the <a href="http://svnbook.red-bean.com/en/1.4/svn.ref.svnversion.re.html" rel="nofollow">svnversion</A> command, and embed its output into generated {source|binaries}. This will not only give the current revision (as many other examples here do), but its output string will also tell whether a build is being done in a mixed tree or a tree which doesn't exactly match the revision number in question (ie. a tree with local changes).</p>
<p>With a standard tree:</p>
<pre><code>$ svnversion
3846
</code></pre>
<p>With a modified tree:</p>
<pre><code>$ echo 'foo' >> project-ext.dtd
$ svnversion
3846M
</code></pre>
<p>With a mixed-revision, modified tree:</p>
<pre><code>$ (cd doc; svn up >/dev/null 2>/dev/null)
$ svnversion
3846:4182M
</code></pre>
http://stackoverflow.com/questions/110175/how-to-access-the-current-subversion-build-number/111259#1112591Answer by Ryan Taylor for How to access the current Subversion build number?Ryan Taylor2008-09-21T15:46:49Z2008-09-21T15:46:49Z<p>In my latest project I solved this problem by using several tools, SVN, NAnt, and a custom NAnt task. </p>
<ol>
<li>Use NAnt to execute <code>svn info --xml ./svnInfo.xml</code></li>
<li>Use NAnt to pull the revision number from the xml file with <code><xmlpeek></code></li>
<li>Use a custom NAnt task to update the AssemblyVersion attribute in the AssemblyInfo.cs file with the latest with the version number (e.g., major.minor.maintenance, revision) before compiling the project.</li>
</ol>
<p>The version related sections of my build script look like this:</p>
<pre><code><!-- Retrieve the current revision number for the working directory -->
<exec program="svn" commandline='info --xml' output="./svnInfo.xml" failonerror="false"/>
<xmlpeek file="./svnInfo.xml" xpath="info/entry/@revision" property="build.version.revision" if="${file::exists('./svnInfo.xml')}"/>
<!-- Custom NAnt task to replace strings matching a pattern with a specific value -->
<replace file="${filename}"
pattern="AssemblyVersion(?:Attribute)?\(\s*?\&quot;(?&lt;version&gt;(?&lt;major&gt;[0-9]+)\.(?&lt;minor&gt;[0-9]+)\.(?&lt;build&gt;[0-9]+)\.(?&lt;revision&gt;[0-9]+))\&quot;\s*?\)"
value="AssemblyVersion(${build.version})"
outfile="${filename}"/>
</code></pre>
<p>The credit for the regular expression goes to: <a href="http://code.mattgriffith.net/UpdateVersion/" rel="nofollow">http://code.mattgriffith.net/UpdateVersion/</a>. However, I found that UpdateVersion did not meet my needs as the pin feature was broken in the build I had. Hence the custom NAnt task.</p>
<p>If anyone is interested in the code, for the custom NAnt <code>replace</code> task let me know. Since this was for a work related project I will need to check with management to see if we can release it under a friendly (free) license.</p>
http://stackoverflow.com/questions/110175/how-to-access-the-current-subversion-build-number/112674#1126747Answer by Sam Stokes for How to access the current Subversion build number?Sam Stokes2008-09-22T00:38:16Z2008-09-22T10:26:14Z<p>The <a href="http://svnbook.red-bean.com/en/1.4/svn.ref.svnversion.re.html" rel="nofollow">svnversion</a> command is the correct way to do this. It outputs the revision number your entire working copy is at, or a range of revisions if your working copy is mixed (e.g. some directories are up to date and some aren't). It will also indicate if the working copy has local modifications. For example, in a rather unclean working directory:</p>
<pre><code>$ svnversion
662:738M
</code></pre>
<p>The $Revision$ keyword doesn't do what you want: it only changes when the containing file does. The Subversion book gives <a href="http://svnbook.red-bean.com/en/1.4/svn.advanced.props.special.keywords.html" rel="nofollow">more detail</a>. The "svn info" command also doesn't do what you want, as it only tells you the state of your current directory, ignoring the state of any subdirectories. In the same working tree as the previous example, I had some subdirectories which were newer than the directory I was in, but "svn info" doesn't notice:</p>
<pre><code>$ svn info
... snip ...
Revision: 662
</code></pre>
<p>It's easy to incorporate svnversion into your build process, so that each build gets the revision number in some runtime-accessible form. For a Java project, for example, I had our makefile dump the svnversion output into a .properties file.</p>
<p>(Charles Duffy <a href="http://stackoverflow.com/questions/110175/how-to-access-the-current-subversion-build-number#111173">already pointed out svnversion</a><s>, but I'm new here and don't have enough reputation to vote him up</s>.)</p>
http://stackoverflow.com/questions/110175/how-to-access-the-current-subversion-build-number/750475#7504752Answer by mlambie for How to access the current Subversion build number?mlambie2009-04-15T06:01:17Z2009-04-15T06:01:17Z<p>In Rails I use this snippet in my environment.rb which gives me a constant I can use throughout the application (like in the footer of an application layout).</p>
<pre><code>SVN_VERSION = IO.popen("svn info").readlines[4].strip.split[1]
</code></pre>
http://stackoverflow.com/questions/110175/how-to-access-the-current-subversion-build-number/1022238#10222381Answer by ivan_ivanovich_ivanoff for How to access the current Subversion build number?ivan_ivanovich_ivanoff2009-06-20T18:54:33Z2009-06-20T20:18:57Z<p>Here is a hint, how you might use <strong>Netbeans</strong>' capabilities to<br />
create <strong>custom ant tasks</strong> which would generate scm-version.txt:</p>
<p>Open your <strong>build.xml</strong> file, and add following code right <strong>after</strong><br />
<code><import file="nbproject/build-impl.xml"/></code></p>
<pre><code><!-- STORE SUBVERSION BUILD STRING -->
<target name="-pre-compile">
<exec executable="svnversion"
output="${src.dir}/YOUR/PACKAGE/NAME/scm-version.txt"/>
</target>
</code></pre>
<p>Now, Netbeans strores the Subversion version string
to <strong>scm-version.txt</strong> everytime you make <strong>clean/build</strong>.</p>
<p>You can read the file during runtime by doing:</p>
<pre><code>getClass().getResourceAsStream("scm-version.txt"); // ...
</code></pre>
<p>Don't forget to mark the file <strong>scm-version.txt</strong> as <strong>svn:ignore</strong>.</p>
http://stackoverflow.com/questions/110175/how-to-access-the-current-subversion-build-number/1347674#13476740Answer by Chris Roberts for How to access the current Subversion build number?Chris Roberts2009-08-28T15:18:45Z2009-08-28T15:18:45Z<p>I use the <a href="http://msbuildtasks.tigris.org/" rel="nofollow">MSBuild Community Tasks</a> project which has a tool to retrieve the SVN revision number and add it to your AssemblyInfo.vb. You can then use reflection to retrieve this string to display it in your UI.</p>
<p>Here's a <a href="http://solutionmania.com/2009/8/28/automatically-adding-svn-revision-numbers-to-assemblies" rel="nofollow">full blog post with instructions</a>.</p>