How to access the current Subversion build number? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T16:20:37Z http://stackoverflow.com/feeds/question/110175 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/110175/how-to-access-the-current-subversion-build-number 12 How to access the current Subversion build number? public static 2008-09-21T03:34:56Z 2009-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#110180 5 Answer by Greg Hewgill for How to access the current Subversion build number? Greg Hewgill 2008-09-21T03:38:02Z 2008-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#110182 1 Answer by coppro for How to access the current Subversion build number? coppro 2008-09-21T03:38:26Z 2008-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#110185 5 Answer by Michael Stum for How to access the current Subversion build number? Michael Stum 2008-09-21T03:40:20Z 2008-09-21T04:17:54Z <pre><code>svn info &lt;Repository-URL&gt; </code></pre> <p>or</p> <pre><code>svn info --xml &lt;Repository-URL&gt; </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>&lt;?xml version="1.0"?&gt; &lt;info&gt; &lt;entry kind="dir" path="cmdtools" revision="151"&gt; &lt;url&gt;http://myserver/svn/stumde/cmdtools&lt;/url&gt; &lt;repository&gt; &lt;root&gt;http://myserver/svn/stumde&lt;/root&gt; &lt;uuid&gt;a148ce7d-da11-c240-b47f-6810ff02934c&lt;/uuid&gt; &lt;/repository&gt; &lt;commit revision="133"&gt; &lt;author&gt;mstum&lt;/author&gt; &lt;date&gt;2008-07-12T17:09:08.315246Z&lt;/date&gt; &lt;/commit&gt; &lt;/entry&gt; &lt;/info&gt; </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#110188 1 Answer by Brian R. Bondy for How to access the current Subversion build number? Brian R. Bondy 2008-09-21T03:43:09Z 2008-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#110192 10 Answer by Bob Nadler for How to access the current Subversion build number? Bob Nadler 2008-09-21T03:45:43Z 2008-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#110197 1 Answer by Omer Zak for How to access the current Subversion build number? Omer Zak 2008-09-21T03:51:01Z 2008-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#110206 2 Answer by Chris Conway for How to access the current Subversion build number? Chris Conway 2008-09-21T03:54:11Z 2008-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#110207 0 Answer by W. Craig Trader for How to access the current Subversion build number? W. Craig Trader 2008-09-21T03:54:25Z 2008-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#110813 3 Answer by Bert Huijben for How to access the current Subversion build number? Bert Huijben 2008-09-21T11:36:02Z 2008-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#111173 19 Answer by Charles Duffy for How to access the current Subversion build number? Charles Duffy 2008-09-21T14:58:58Z 2008-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' &gt;&gt; project-ext.dtd $ svnversion 3846M </code></pre> <p>With a mixed-revision, modified tree:</p> <pre><code>$ (cd doc; svn up &gt;/dev/null 2&gt;/dev/null) $ svnversion 3846:4182M </code></pre> http://stackoverflow.com/questions/110175/how-to-access-the-current-subversion-build-number/111259#111259 1 Answer by Ryan Taylor for How to access the current Subversion build number? Ryan Taylor 2008-09-21T15:46:49Z 2008-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>&lt;xmlpeek&gt;</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>&lt;!-- Retrieve the current revision number for the working directory --&gt; &lt;exec program="svn" commandline='info --xml' output="./svnInfo.xml" failonerror="false"/&gt; &lt;xmlpeek file="./svnInfo.xml" xpath="info/entry/@revision" property="build.version.revision" if="${file::exists('./svnInfo.xml')}"/&gt; &lt;!-- Custom NAnt task to replace strings matching a pattern with a specific value --&gt; &lt;replace file="${filename}" pattern="AssemblyVersion(?:Attribute)?\(\s*?\&amp;quot;(?&amp;lt;version&amp;gt;(?&amp;lt;major&amp;gt;[0-9]+)\.(?&amp;lt;minor&amp;gt;[0-9]+)\.(?&amp;lt;build&amp;gt;[0-9]+)\.(?&amp;lt;revision&amp;gt;[0-9]+))\&amp;quot;\s*?\)" value="AssemblyVersion(${build.version})" outfile="${filename}"/&gt; </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#112674 7 Answer by Sam Stokes for How to access the current Subversion build number? Sam Stokes 2008-09-22T00:38:16Z 2008-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#750475 2 Answer by mlambie for How to access the current Subversion build number? mlambie 2009-04-15T06:01:17Z 2009-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#1022238 1 Answer by ivan_ivanovich_ivanoff for How to access the current Subversion build number? ivan_ivanovich_ivanoff 2009-06-20T18:54:33Z 2009-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>&lt;import file="nbproject/build-impl.xml"/&gt;</code></p> <pre><code>&lt;!-- STORE SUBVERSION BUILD STRING --&gt; &lt;target name="-pre-compile"&gt; &lt;exec executable="svnversion" output="${src.dir}/YOUR/PACKAGE/NAME/scm-version.txt"/&gt; &lt;/target&gt; </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#1347674 0 Answer by Chris Roberts for How to access the current Subversion build number? Chris Roberts 2009-08-28T15:18:45Z 2009-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>