duplicate: How do I sync the SVN revision number with my ASP.NET web site?
How can you automatically import the latest build/revision number in subversion?
The goal would be to have that number visible on your webpage footer like SO does.
|
3
|
duplicate: How do I sync the SVN revision number with my ASP.NET web site? How can you automatically import the latest build/revision number in subversion? The goal would be to have that number visible on your webpage footer like SO does.
|
|||
|
|
|
|
or
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):
I wrote a tool (cmdnetsvnrev, 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. |
|||
|
|
|
|
|
||||
|
|
|
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]+)". |
||
|
|
|
|
If you have tortoise SVN you can use SubWCRev.exe Create a file called: RevisionInfo.tmpl
Then execute this command:
It will create a file ReivisonInfo.txt with your revision number as follows:
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. |
||
|
|
|
|
Add svn:keywords to the SVN properties of the source file:
Then in the source file include:
The revision will be updated with the revision number at the next commit to (e.g.) |
||||
|
|
|
If you are running under GNU/Linux, cd to the working copy's directory and run: svn -u status | grep Status\ against\ revision: | awk '{print $4}'
From my experience, svn info does not give reliable numbers after renaming directories. |
||
|
|
|
|
You don't say what programming language/framework you're using. Here's how to do it in Python using PySVN
|
||
|
|
|
|
You want the Subversion info subcommand, as follows:
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. A C# fragment to extract this under Windows would look something like this:
(In my case, we use the Subversion revision as part of the version number for assemblies.) |
||
|
|
|
|
Using c# and SharpSvn (from http://sharpsvn.net) the code would be:
|
||
|
|
|
|
Have your build process call the svnversion 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). With a standard tree:
With a modified tree:
With a mixed-revision, modified tree:
|
||||||
|
|
|
In my latest project I solved this problem by using several tools, SVN, NAnt, and a custom NAnt task.
The version related sections of my build script look like this:
The credit for the regular expression goes to: http://code.mattgriffith.net/UpdateVersion/. 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. If anyone is interested in the code, for the custom NAnt |
||
|
|
|
|
The svnversion 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:
The $Revision$ keyword doesn't do what you want: it only changes when the containing file does. The Subversion book gives more detail. 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:
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. (Charles Duffy already pointed out svnversion |
|||
|
|
|
|
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).
|
||
|
|
|
Here is a hint, how you might use Netbeans' capabilities to Open your build.xml file, and add following code right after
Now, Netbeans strores the Subversion version string to scm-version.txt everytime you make clean/build. You can read the file during runtime by doing:
Don't forget to mark the file scm-version.txt as svn:ignore. |
|||
|
|
|
|
I use the MSBuild Community Tasks 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. Here's a full blog post with instructions. |
||
|
|