active questions tagged subversion - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T20:15:13Zhttp://stackoverflow.com/feeds/tag/subversionhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1915986/tfs-revision-graph-like-subversion1TFS- Revision graph like SubversionRam2009-12-16T16:45:53Z2009-12-16T17:56:40Z
<p>Is there a way to see revisions/changeset to a repository in TFS just like how we can see revisions/branches in SVN using revision graph?</p>
<p>Edit: I am using TortoiseSVN for SVN client</p>
http://stackoverflow.com/questions/1913537/optimizing-regression-testing-in-a-c-environnement4Optimizing regression testing in a C++ environnementDenis Dollfus2009-12-16T09:52:24Z2009-12-16T12:35:59Z
<p>In order to avoid too much testing, I would like to provide the Quality Assurance (QA) team with hints on which features have to be regression tested after a development iteration. Do you know tools that could do that on a C++ and Subversion (and visual studio) dev environment ?</p>
<p>Details about the use case:</p>
<ol>
<li>Features would be defined by the
development team in terms of entry
points, typically classes or class
methods. Say, feature "excel file
import" is defined by method
ImportExcelFile(...) of class
FileImporter.</li>
<li>During the development iteration,
the development team commits some
changes on some methods of some
classes. Say, one of these classes
is indirectly used by method
ImportExcelFile()</li>
<li>At the end of the iteration, all
commits are analysed by the tool and
a report is produced and delivered
to the QA team. In our example, the
QA team is informed that feature
"excel file import" must be tested,
and that other features X Y & Z are
unchanged.</li>
</ol>
<p>Very probably this tool would use static code analysis and consume subversion APIs. But does it exist ?</p>
http://stackoverflow.com/questions/1910392/cruise-control-net-and-subversion-issue0Cruise Control.net and subversion issuezachary2009-12-15T21:04:38Z2009-12-16T12:29:12Z
<p>I have a intervalTrigger that runs off subversion source control.</p>
<p>I update subversion but it doesn't trigger the build.</p>
<p>I have the exact same setup on another server and it works.</p>
<p>How can I troubleshoot this? Is there a log I can look into? I don't see any error messages.</p>
<p>The new server is VMWare </p>
http://stackoverflow.com/questions/1899120/backup-and-restore-svn-settings-how1BackUp and Restore SVN settings, How?coderex2009-12-14T05:43:21Z2009-12-15T08:33:48Z
<p>Hi,
I have a svn configured in the windows server and having 2000 more revisions. So i would like to change the sever from Windows to linux, so i want to backup all the revision and restore to the new svn configuration under linux. </p>
<p><strong>How is it possible??</strong></p>
http://stackoverflow.com/questions/1900538/error-getting-svn-repo-of-liferay-in-eclipse0Error getting SVN repo of Liferay in EclipseTim2009-12-14T12:04:25Z2009-12-14T19:25:34Z
<p>Hello,</p>
<p>Im using Eclipse Galileo and have installed Subclipse. I looked at the svn repo url at <a href="http://www.liferay.com/web/brian.chan/blog/-/blogs/changes-to-anonymous-access-to-liferay-s-svn" rel="nofollow">http://www.liferay.com/web/brian.chan/blog/-/blogs/changes-to-anonymous-access-to-liferay-s-svn</a> and then tried to get Liferay from their SVN repository in Eclipse, using <code>svn://svn.liferay.com/repos/public --username guest</code>,but i get the following error message:</p>
<pre><code>Error validating location: "org.tigris.subversion.javahl.ClientException:No connection could be made because the target machine actively refused it.
svn: Cant connect to host 'svn.liferay.com':No connection could be made because the target machine actively refused it
</code></pre>
<p>Any way to fix this ?</p>
<p>Thank You</p>
http://stackoverflow.com/questions/1898746/how-to-build-an-autobuild-system-and-regression-test-system-for-subversion1How to build an autobuild system and regression test system for subversion?Ankur2009-12-14T03:25:42Z2009-12-14T06:38:31Z
<p>I have been asked to do the following:</p>
<p>a) Build a VM for a subversion server<br>
b) Figure out an autobuild system and regression test system<br>
c) Write documentation or simple instructions to get people started with subversion</p>
<p>I am not really sure what these instructions mean - although I have a vague idea. If you know could you provide some dot points and appropriate terms that I should google.</p>
http://stackoverflow.com/questions/1898994/converting-from-mercurial-to-subversion0Converting from Mercurial to SubversionAnacrolix2009-12-14T04:55:15Z2009-12-14T05:27:52Z
<p>Due to lack of Mercurial support in several tools, and managerial oppression it has become necessary to convert several trial Mercurial repositories to Subversion in order to conform with the company standard.</p>
<p>Are there any tools or suggestions for how to achieve this without a loss of revision history and the like?</p>
http://stackoverflow.com/questions/1894367/beginner-setting-up-subversion-externals1Beginner: Setting up Subversion externals4thSpace2009-12-12T18:56:39Z2009-12-12T23:47:14Z
<p>I believe svn externals is what I want to use but would like some clarification on setting it up. I've never done so.</p>
<p>My environment is:</p>
<pre><code>Mac 10.6.2
Xcode
Cornerstone
Subversion 10.6 (file based/single developer)
Single repository
</code></pre>
<p>My svn folder structure is:</p>
<pre><code>\projects\projectA
\projects\projectB
\projects\projectC
\projects\projectX (.lib file)
\projects\projectY (images)
</code></pre>
<p>All projects have trunk, tags, and branches folders (just as Subversion suggest). Projects X & Y are really shared code. What I'm wanting to share in them are images and .lib files. For example, projectY will contains PSDs for images plus the product, which is a PNG. projectX will contain Xcode source files plus the product, which is a .lib file.</p>
<p>In projects A thru C, I want to reference the PNG and .lib files and would like to have the option of either referencing latest or a particular version, which I understand externals will do. projectY will contain all of its PNG files. However, projectX will output its .lib to a common build folder that all Xcode projects use.</p>
<p>If I create an external property from projectA to images in projectY, doesn't that mean all of projectY is an external, source code (PSDs) and all? I'm just interested in the PNGs.</p>
<p>Additionally, if I want to reference particular versions of the .lib file in projectX from projects B and C, how is that done since projectX outputs its .lib file to a common Xcode build folder?</p>
<p>When I update an image in projectX, how does projectA get the latest image? Just by doing an update?</p>
<p>If I put all of projectY's images into a product folder and only need three of its say 50 images in projectA, will all 50 still show up in projectA? Is that a performance issue?</p>
http://stackoverflow.com/questions/1891693/subversion-access-control-using-mysql-and-apache-mod-dav-svn-mod-auth-sql-apac0Subversion Access Control using Mysql and Apache (mod-dav-svn, mod-auth-sql, apache, mysql)BParker2009-12-12T00:15:44Z2009-12-12T20:55:40Z
<p>Hi, I am trying to configure a site on my Apache server to use mod_dav_svn with mysql authentication.</p>
<p>I am using a database with three tables like this</p>
<pre><code>auth_users
----------
uid username passwd
1 UserA pass
2 UserB pass
</code></pre>
<p>.</p>
<pre><code>auth_groups
-----------
gid group
1 repo_rw
2 repo_ro
</code></pre>
<p>. </p>
<pre><code>users_groups
uid gid
1 1
2 2
</code></pre>
<p>Therefore:-</p>
<p>UserA is a member of the group repo_rw
UserB is a member of the group repo_ro</p>
<p>I then use the following in my httpd.conf file:-</p>
<pre><code><VirtualHost *:80>
DocumentRoot /var/www
ServerName repo.srv.domain.com
ServerPath /var/www
<Location /svn>
DAV svn
SVNPath /var/svn/repo
AuthType Basic
AuthName "Subversion Repository"
AuthUserFile /dev/null
AuthBasicAuthoritative Off
AuthMySQL_Authoritative on
AuthMySQL_Empty_Password off
AuthMySQL_Encryption_Types Plaintext
AuthMySQL_Password_Table "auth_users u"
AuthMySQL_Username_Field "u.username"
AuthMySQL_Password_Field "u.passwd"
AuthMySQL_Group_Table "auth_groups g RIGHT JOIN users_groups ug ON (ug.gid=g.gid) RIGHT JOIN auth_users u ON (ug.uid=u.uid)"
AuthMySQL_Group_Field "g.group"
<Limit GET PROPFIND OPTIONS REPORT>
Require group repo_rw
</Limit>
</Location>
</VirtualHost>
</code></pre>
<p>In this configuration i am able to give users rw access to the repository /var/svn/repo, authenticated as valid users of this repository.</p>
<p>I am also able to add multiple VirtualHost entries, replacing "repo" in the various locations to a new reposiotry name and provide controlled rw access to individual repositories.</p>
<p>My Problem is that i am unable to add READ ONLY access to repositories, and also anonymous read only access.</p>
<p>I have read it should be possible to add </p>
<pre><code><LimitExcept GET PROPFIND OPTIONS REPORT>
Require group repo_ro
</Limit>
</code></pre>
<p>to the section and this should provide read only access to the repository, however i have not been able to make this work. tail-ing the mysql log shows only the repo_rw gets queried.</p>
<p>If anyone can give any advice i would be extremely grateful!</p>
http://stackoverflow.com/questions/1889013/svn-propedit-gives-me-a-blank-file0svn propedit gives me a blank fileMichael Hackner2009-12-11T15:59:49Z2009-12-11T16:02:28Z
<p>I know that the <code>svn:ignore</code> property is populated in my working copy, but when I do</p>
<pre><code>svn propedit svn:ignore . --editor-cmd notepad
</code></pre>
<p>I get a blank file; editing and saving the blank file has no effect on the property. Using other editors gives a similar result.</p>
<p>Why isn’t this working?</p>
<p>I am using a 1.4.2 server and a 1.6.6 client.</p>