svn

SVNkit not working on UNIX

I am trying to checkout files on Unix using SVNkit. The same code was working on Windows box. Am I missing something here? svn: handshake_failure: remotely generated; fatal svn: OPTIONS request failed on '/svn/repos/branches/Package1' Error code desription:: RA layer request failed Error code:: 175002 ...

How can I speed up Subversion checkins? (Using ANKH, latest, Visual Studio 2010)

I've started working on a new web project with some friends... we are using the latest Subversion server (installed last week), the latest version of ANKH. My web project is a whapping 1.5 megabytes (that's with all images, css files, dll's after compiling, pdb files... etc). Checking in even super small changes (literally adding the l...

Best way to illustrate how much code re factoring has occurred in SVN

On one project we have been working on recently, we have in essence totally re-factored the entire code base, touching almost all (if not all code files), one thing that I would like to get a view of, is exactly how many files have been altered from one revision to another. i.e over the span of 3 months I am interested in how many file...

Don't show svn:externals in svn status

I've made one svn:external in my repository. Everything works fine, exect the ouput of the "svn status". In the output there is lot of information I don't need: $ svn st X lib Performing status on external item at 'lib' I can run ‘svn st --ignore-externals -q‘ and I can place this line in a small script, but maybe there is bette...

Deploying ASP.Net web app with CruiseControl.Net and SVN -- getting rid of .svn folders

I have a CruiseControl.Net project set up to build an ASP.Net project, using an <svn> task to pull the latest code from source control. On a successful build, I use a <buildpublisher> to copy the site to a deployment folder. My problem is that the buildpublisher is copying everything to the destination folder, including every .svn fold...

How to get committed directory with sharpsvn

Hi, I'm trying to get directory that is committed per revision. Is there any method in sharpsvn can do it? Thanks. ...

How do I determine if svn:mergeinfo is corrupt and how would I fix it?

I suspect I have corrupt mergeinfo but I'm not sure. Does anyone know how I'd make a determination and what resources are out there to help fix problems? Here’s the issue. My team recently moved to agile and uses feature branches (story branches really) where different teams work on the same sources concurrently. As the story achie...

Project hosting vs. my own SVN

I'm working on different projects with some small teams (2-3 people for each). Those projects are about some scientific stuff, most (probably all) the code will be released under GPL after the publication of some results and we don't want to spend money for this. My first question is: should i keep my local SVN server or you know some ...

Adding a new subversion user programmatically with C#

I am developing a custom Web Interface Browser for Subversion Repositories with C#/ASP.NET and SVNKit (Converted to .NET assemblies using IKVM.NET). Is there any clean way to locally add a new subversion user (that is added by the administrator) using C# code? ...

Commit SVN working copy into Git repository

I am currently working on a checked out SVN project along with some plugins for that project. I want to keep all of this work - including the current version of my SVN checkout within a single git repository. I thought I had achieved this by checking in the SVN working copy to git. However, when I did a pull on a new computer the SVN w...

Where happens merging in SVN - on the client or server?

At my company we evaluate working with feature branches. We want to use mergeinfo to track merging. I have issues in some of our tested projects where merging a trunk that has only little changes into branch leads to lots of changed files because of the changed mergeinfo. I read that this behaviour improved between version 1.5 and 1...

Tracking upstream svn changes with git-svn and github?

How do I track upstream SVN changes using git-svn and github? I used git-svn to convert an SVN repo to git on github: $ git svn clone -s http://svn.osqa.net/svnroot/osqa/ osqa $ cd osqa $ git remote add origin [email protected]:turian/osqa.git $ git push origin master I then made a few changes in my git repo, committed, and pushed to g...

Pretty SVN commit emails: templates

Where can I find good templates for svn commit emails? Google led me to this. Even though it was much better than the default post-commit, I didn’t find it very useful. Help much appreciated. ...

Change SVN Path Entirely

Hi Guys, We have an SVN at http:/XX.XXX.XXX.XXX:1111/svn/AB/ - and the first two folders of the SVN are like http:/XX.XXX.XXX.XXX:1111/svn/AB/abc/filefolder/ The problem is we want to move the entire svn to get rid of /abc/filefolder/ as the entire project sits under /abc/filefolder/ [created long ago and never bothered to change] (que...

Eclipse 3.5 and Ubuntu 9.10, subversion client does not work

Hi, I had installed Eclipse 3.5 Yoxos on my Ubuntu 8.04 for month, and run fine. I had upgraded to 9.10 last week, and the subversion plugin does not work since upgrade. When I try to update or commit, Subversion work for hours without any progress in console or progress bars. I can delete files or add them to SVN, but commands wich in...

SVN for XCode Project

Hello All I am looking for sub version solution for iPhone applications (xCode Projects). i have tried Rapid SVN and SCPlugin but both plugins are not so use full and it behaved randomly like giving error like "file is locked" etc.. So is there any powerful solution for same. One more think i am not able to figure out that why only few ...

Svn - get the list of all repos on a server so I can svnsync

I'm attempting to create a backup of my client's existing svn repositories, which is publicly available over http. If possible, I'd like to be able to make new repositories automatically, from any computer, without having to give console access to the server to external parties (i.e. the users could do a ls on my svn repo dir) My probl...

SVN mergeinfo property and branches

Here we go again with svn:mergeinfo. I have read all the Q/A regarding it but I have come across a case that does not seem to be covered in the existing posts here. My trunk is clean of svn:mergeinfo, i.e. this: svn propget svn:mergeinfo --depth=infinity returns only merge info in the root of trunk, which is fine. The I create a branc...

SVN 255 Character Problem

Hi Guys, I am using TortiseSVN and we have a problem when we exporting etc because subversion errors. The path has a character limit 255 - so I am not sure if this is the problem [I think it is in Win7 x-64 bit] How do I fix this ? i.e. allow paths for >255 characters ? ...

Email address as username in svn+ssh login?

I need to allow access to an svn repository using email addresses as the user name. I can log in to the server over ssh no problem by changing the email address "@" to a "$" like so: ssh [email protected] Unfortunately, the same does not work for svn+ssh. This gets me nowhere: svn ls svn+ssh://user.name$mydomain.com...