svn

Integrate Trac+SVN with Doxygen

I am aware of the Trac Doxygen plugin. It allows linking to the Doxygen docs from the Trac wiki. I am looking for something that will help me automate the documentation. Since the project is huge, it is probably not possible to update the documentation on every commit especially since Doxygen doesn't do incremental documentation builds...

Why are git submodules incompatible with svn externals?

There are lots of webpages out there suggesting hackish ways to make svn externals look like git submodules. I have read some accounts of what the difference is, but this doesn't seem very fundamental: Git submodules link to a particular commit in another project's repository, while svn:externals always fetch the latest revision. W...

Last.fm client source code / SVN

I have already asked in their forums ([1], [2]) but I don't seem to get an answer there. It seems that the official Lastfm SVN (svn://svn.audioscrobbler.net/clientside/Last.fm) is not updated anymore since a long time (last version-tag is 1.4.1.57486 - last commit from 2007). Where is the current code of the 1.* branch? Moved to Git or...

Subversion checkout from a GitHub repository which contains symlinks

I have a project hosted on GitHub and I use Git for source versioning. I have to pull the code on another platform but it can't have Git, so I am using Subversion Support of GitHub to checkout the code, but it doesn't handle symlinks. For example, on my machine I have a symlink : sf -> ../lib/vendor/symfony/data/web/sf But when the ...

Checkout from subversion through svnANT is not working

build.xml file is like: I have installed JDK 1.6.0, apache-ant -1.8.1 on my system. Using Subversion I checkout the SVNAnt project located at: http://subclipse.tigris.org/svn/subclipse/trunk/svnant and put at ANT_HOME. Also download svnant.jar, svnClientAdapter.jar, svnjavah...

svn repository malformed: how to fix repair repository structure

OK. The repository structure has directories "src" "aux" and "script". No "trunk", no "tags", no "branches". Is there any way I can get this code into a correctly-structure repository while preserving the revision history? ...

Is there a guarantee that svn automatically merges concurrent "add line" and "delete line" to the same file?

I have a distributed system which uses XML files in an SVN repository as a means of communication (as you may guess from that, communication normally is slow). Some processing nodes add or delete some data to a repository, another processing node takes this as an input event and reacts accordingly. At the moment, everything's fine, but ...

Easy way to use vim for an svn conflict?

I just ran into a conflict while working in SVN, and I find myself missing a bit of functionality from Mercurial. In Mercurial, I have vim -d set up as my diff tool. I'm wondering if there is a way to get SVN to work in a similar way? Something along the lines of: $ svn resolve whatever.py Which would bring up vim (in diff mode), ...

Simple svn propset question

I don't know svn terribly well and not sure how to do the following. I want to change a single line of the svn:externals property. On dir, svn:externals has several directories set up >svn propget svn:externals dir a svn://externalproject/a b svn://externalproject/b c svn://externalproject/c d svn://externalproject/d And I would lik...

What client tool do you recommend using with a subversion repository

I come from a RoR background while using GitHub. I am now working on C#/ASP.NET in VS2010. I have a subversion repo set up at a client site waiting to be used. What client tool do you recommend using with subversion? Command Line (which I like), TortoiseSVN, etc. ...

Copy only certain SVN revisions from one repository to another

I run an SVN server on a linux server. I'm going out of town for a week somewhere with no internet access, and therefore no SVN access. So I'm trying to figure out how to take a snapshot of the repository with me on my laptop, and then merge the new revisions back into the existing repository when I get back... My laptop runs Windows ...

Is it possible to make the trunk in svn point to a branch (a la symbolic link)

Our svn-repositories usually consist out of several branches of which 1 is the 'live' version. Currently we make that one the trunk, but this has some drawbacks; everytime we migrate to a new branch, we have to rename the trunk to become a branch or delete it altogether and rename a branch to become the trunk. We would rather have no tru...

XCode, iPhone Project an SVN

Dear stackoverflow Users, while coding a little iPhone App with a friend, we decided to use Subversion to share the code. While doing that, we found some small annoyances but I#m sure they are a result of our lack of experience with iPhone Projects and SVN. While this is only a fun and learning Project, both of us have there own provisi...

Per-directory permissions on git

Hello all, We are considering switching our VCS to either git or subversion. I'd prefer switching to git, but subversion has a nice feature that I don't see in git : per directory access control. We currently have project1, project2 repositories in cvs, with different permissions. We'd like to have one single repository, with two direc...

Working in sync with SVN upstream

I'm working on a project that is using code from an OpenSource project. One of the requirements is to push as much code back to upstream as possible. The remote project is using Subversion (not very well). My current setup looks like this: [Remote SVN] (git svn fetch)-> [My public Git] <-(push/pull)-> [My dev. Git] ...

TeamCity - MSBuild - SVN - AssemblyVersion - C#

Hi all I'm currently using MSBuild+Community Task's to change the AssemblyVersion, AssemblyFileVersion + more in AssemblyInfo.cs, via TeamCity and it works like a charm :). However I would like to commit the modified AssemblyInfo.cs back to the repo. How can I do that? I tried with the "SvnCommit" task from Community Tasks, but on th...

How to being in multiple files into the same folder using svn:externals

I have a couple of Subversion repositories that look like: /Core /trunk /External /LibraryA - LibraryA.dll - LibraryA.pdb /LibraryB - LibraryB.dll - LibraryB.pdb /Website /trunk /Website ... /Bin ... I would like to bring in the files contained in /Core/trunk/E...

Hudson SVN sync problem

I am using Hudson 1.224, polling an SVN rep in another machine. When Hudson checks out (or updates) the build revision, it is never the latest one. Then the build happens on an old revision of the source code. The VERSIOND file has the wrong revision. Also, Hudson won't stop building the task, unless I tell it manually to. When a build...

Subversion strange response when committing files to a repository

I have been using TortoiseSVN for a 2-3 months to control my subversion. Today when I tried to commit files to a repository it showed me a strange message like this: When I went to the menu and selected Cleanup command it showed me this new message box: I have tried to release lock it says that there is nothing to unlock. What happ...

SVN: PROPFIND request failed

build.xml is like: <?xml version="1.0"?> <project name="AUTO_BUILD"> <property environment="env"/> <path id="svnant.classpath"> <fileset dir="C:\Program Files\Java\apache-ant-1.8.1/lib"> <include name="**/*.jar"/> </fileset> </path> <taskdef resource="svntask.properties" classpathref="svnant.classpath"/> <target name="chec...