svn

CCNet triggers build, but succeds even i check in bad code to svn

HI, I have set up CruiseControl for .NET with SVN as my source control and using NAnt build script. When i manually build the visual studio solution i get the errors, which is correct coz i have some bad code. After i checked in the code to svn, CCNet triggered the build, but the result shows as SUCCESS. Please find the config and buil...

Copy a whole directory with phing

Does anyone know if its possible to use phing to copy an entire folder with files and sub folders (joomla core download) to another folder, but without the .svn folders. I have downloaded joomla using SVN, and I want to export it to my joomla dev folder using phing, without the need to have to list every single file type. My plan is to ...

SVN on webhosting..

I have been getting into SVN quite recently. I decided that I wanted to install the SVN server on my web hosting space. My host is godaddy. So here's my question: How can I install SVN on godaddy. I can SSH into the server, and the server is running Red Hat 4. Any suggestions? ...

Renaming folders in SVN and VS.Net

Hi. I'm using subversion and Visual Studio 2008 (and Tortoise) I've got a number of folders in visual studio projects that I want to rename. Whenever I've tried this in the past I've ended up with conflicts and had to create my new folder, copy all the existing content in to it, check it in and delete the old folder. Has anyone come ...

Subversion and Windows Server 2008

Hello. I install the subversion on my windows server 2008. But it's only work localhost. It don't work when i try from another computer. I can't find out whats the problem is. Are there any ports or something like that i need to configure? This was the guide i follow Thaks for your help ...

SVN automatic code formatting on check in?

Is this possible? If so how do I do this? The code is in C# and we are using TortoiseSVN. I simply want to auto format the code on every checking. Thanks a lot ...

Save me from my SVN self

When using svn, and I want to check in the entire local repository, I cd into its directory and type: svn commit -m "blah blah" I quickly realized (the painful way) that this doesn't add new files automatically. In order to do that, I'm performing this two step hackasstic monster: find . | grep -v ".svn" | grep -v "ignorepattern" | ...

Deleting svn checkout with NAnt

I am attempting to delete a folder that is a svn checkout of my project so that I can do a fresh checkout. The problem is whenever I try to delete this folder using a nant delete task I keep getting the following error: [delete] Deleting directory 'C:\projects\my_project\Trunk'. BUILD FAILED c:\Projects\my_project\default.build(63,4):...

XCode and updated SVN

Hi, the stock svn that comes with OSX is 1.4.4 and I upgraded (through opencollab installers) to 1.6.2 My Problem is, XCode (v3.1.2) picks up the old subversion. At one point I had fixed this by executing the following: defaults write ~/.MacOSX/environment DYLD_LIBRARY_PATH /opt/subversion/lib And it worked. But it has since revert...

Converting a company from SVN to Hg?

We're a heavy user of SVN here. While the advantages of GIT over SVN made us want to change, the advantages of Hg over SVN mean it's now time to change and we need to start doing so very soon. I'm not so worried on the client side, but here are my questions. There are some excellent books on setting file metaproperties, properly organ...

Open Source Clearcase Alternatives

I'm helping get the SCM set up for a new program, and we're currently in the process of deciding on a VCS. The main contenders at this point are SVN, ClearCase, SVN+DVCS, and just a DVCS. At the moment, the team is leaning towards either SVN or SVN+DVCS. We want to avoid the expense and administration costs of ClearCase, but want the ...

Is it normal that Hudson takes an awful lot of time before he notices a new SVN revision?

Hi! I just recently started using Hudson as a CI server for a project of mine. I've set up a "job" with a SVN-repository. The server runs on my local machine and the SVN repository is hosted at http://www.unfuddle.com. The problem is that when I commit the code from my local machine and then manually trigger a build in Hudson that it t...

Plastic SCM vs. SVN

I'm currently researching new source control options for a team of 10 developers. We do .net development in Visual Studio 2008. We currently use VSS for source control. We are looking for a centralized source control solution(non-distributed), with a nice Visual Studio plugin. My manager has recommended Plastic SCM and I've always hear...

Why would SVN command line client freeze with no output on Win XP?

I'm trying to connect from a Windows XP system to an SVN server but I'm getting weird behavior. When I run this... svn ls svn+ssh://[email protected]/path/to/svn_repository ...the cursor just freezes as if it's a long-running process with no output. I've tried the above in both a Windows console and a MINGW32 console. I can pin...

An SVN error (200 OK) when checking out from my online repo

I'm trying to setup my first repo on my host and am getting this error when I use Tortoise to checkout the project: Error: OPTIONS of 'http://mywebsite.com/svn/myproject': 200 OK (http://mywebsite.com) Here is what I did: 1) ssh into my host and head to /home/myaccnt and 'svnadmin create svn' 2) create my project repo: 'svn mkdir svn...

Setting up svn so that it can be accessed over the internet

Once set up with apache web server, can svn be accessed over the internet or only within a local network? ...

Impact of macfee on subversion

Hi , is there any impact of macfee on subversion? Actually we were getting the below Cannot can't open .svn\tmp\tempfile.tmp: access is denied . When i started searching on this, i found few articles saying like there is a impact of macfee antivirus on subversion. http://blog.mxunit.org/2009/03/cannot-cant-open-svntmptempfiletmp.html...

can't open .svn\tmp\tempfile.tmp: access is denied while doing commit

Hi, i am getting the below error while doing the commit, can't open .svn\tmp\tempfile.tmp: access is denied . When i started searching about this error in google, i came to know that may be because of McAfee antivirus, this error may come. Please let me know if there is any impact of McAfee on subversion. http://blog.mxunit.org/2009/...

Should I add a new SVN repository or a new folder ?

Have one application in SVN (on unfuddle.com). Want to add a new application (related to, but independent of the existing one). Today I have: repo1/root/app1 Should I add the new application in a new repository or in a new folder ? i.e. should I use option1: repo1/root/app1 repo1/root/app2 or option2: repo1/root/app1 ...

Subversion Vendor Branches

What is a best practice when setting up subversion to use vendor branches? our repository is structured for individual projects. We are using subversion 1.6.2 and tortoisesvn 1.6.3 example: Project1 /tags /branches /trunk Project2 /tags /branches /trunk 1)Where would I put the vendors folder and what structure should it have? 2)Is t...