visualsvn-server

How to rename a project in VisualSVN or by the client TortoiseSVN (win32 platform) ?

I tried to find any feature seems like 'rename' both on server side and client side but failed, is it possible? ...

Idiots guide to moving a directory up in SVN

No, this is not a duplicate of this. While I'm normally used to using visual tools with SVN, I find myself now faced with wanting to move Repo/Parent/ChildX/ChildY to Repo/ChildY. I receive the following errors and am just looking for what I'm missing here. Consider the server just installed (from a dump), nothing else available but svn...

Easiest Subversion installer for Windows 7?

I want to try out Subversion on Windows 7. The repository will be on the same PC I'll be accessing it on (i.e., server and client on same computer) I read a blog entry that suggested that VisualSVNServer was the easiest way to install SVN. Any better suggestions or comments on whether VSVNS is indeed the easiest to install? ...

Does CruiseControl.NET have to access VisualSVN via HTTP or HTTPS?

I've recently got CruiseControl.NET setup to work with my VisualSVN server. It works fine, and the TrunkURL uses the repository url that VisualSVN gave me, which starts with https. I am however confused slightly because every example you see on the CruiseControl.NET website for subversion has the server using svn://. I tried to use th...

Yet another Subversion "Commit failed" MERGE of 'blabla': 200 OK

Hi! I get the infamous "MERGE of 'whatever': 200 OK" whenever I try to commit using a post-commit hook on Windows (running the repository and Trac locally), and I'm going crazy. I've been looking all over for a day now, without finding any solutions. So here's how it's set up and what I've tried so far: Settings: Windows 7 (64-bit) Vi...

Subversion unexpected 405 on adding file

I've just added a new user to a SVN repository. They have read/write perms on the repo. They also have file perms (up to Modify, including Write and Create) on the Repo directory. When the user tries to add a file to the project, or commit a file, they get a 405 response (note: not a 401). They seem to be authenticating correctly, but ...

Browser won't connect to svn server

This has been driving me nuts. For some reason, I can't access my svn repository using a browser in this laptop that I'm using right now (firefox & ie) The connection just times out. I'm at home right now and the server is in another room. It connects OK there and it also connects OK in my virtual machine in this same laptop. I'm pretty...

how to access subversion server remotely

I just installed VisualSVN server yesterday at my home computer and I can access my repositories ok at localhost but when I try to access it remotely, it won't connect. Am I supposed to configure something else or is it not possible? I'm using https://servername/svn as the URL in my browser and the home computer is behind a router. This...

Deploying ASP.NET MVC web project by remotely building committed VisualSVN code

Publishing my entire application to a server in the U.S. every time I change a single line of code is taking FOREVER. I'm running VisualSVN server on my production server. How can I auto-build my project (to a development site folder) on the server whenever a commit is made? And is this a good practice? Update: I'm now looking into t...

AnkhSVN Commits Are Very Slow

Recently, I had to move my SVN repositories to a different server, but I am experiencing some performance problems since the move. I am using Visual Studio 2005, AnkhSVN 2.1.7819.411 and TortoiseSVN 1.6.6 on my workstation and VisualSVN Server on the server which runs Windows Server 2008. Whenever I try to commit a file or view the fi...

What's the "format" file in VisualSVN repository?

There is a file called 'format' in the root repository folder. It contains the number 5. Does it mean our SVN Server is running on SVN 1.5 ? ...

VisualSVN Server + Trac Authentication Problems

I have Trac set up on my VisualSVN server (using Subversion authentication), however every time I navigate to the Trac home page after opening the browser, I get the basic authentication dialog asking me for my username/password. What I would like to do is have a login form in Trac, which would allow me to log in forever using cookies. ...

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...

How can I do daily backups for my VisualSVN Repos?

How can I do daily backups for my VisualSVN Repos? Its on a Windows Server 2003 machine, I was thinking about just doing an xcopy of the folder C:\Repo but I'm not familiar enough with svn to know if that will cause issues. Save me SO! ...

VisualSVN pre-commit rule

Using this hook with VisualSVN, added to the Repository/hooks folder as pre-commit.bat My question is how do I add the rule that a comment must always start with a numeric value? I want the first part of the comment to always be the issue number from a bug tracker. Eg. "123 - this commit fixes issue 123" @echo off :: :: Stops commi...

Visual SVN, hudson build trigger.

I have visualSVN server installed on windows server 2008. I want to use the post commit hook command line to call this code that I got on the Hudson web site: set REPOS="$1" set REV="$2" set UUID=`svnlook uuid $REPOS` /usr/bin/wget \ --header "Content-Type:text/plain;charset=UTF-8" \ --post-data "`svnlook changed --revision $REV $R...

tigger a build in teamcity build server from visual svn

Question Is there a way to notify teamcity when ever someone does a commit to a repository on visual svn? This is so every time someone commits to the repository a build in teamcity will trigger immediately without the developer having to wait for polling to kick in on its set time interval. ...

Visual SVN Server, Tortoise SVN and Windows 7 problem -

Hi. I am running Visual SVN Server(with Apache) on a Windows 7 computer and network. After about 15-20 minutes of my first commit/update, I am unable to access the repository via Tortoise SVN. The error message I get is: OPTIONS of "https://jason/svn/repository1": could not connect to server (https://jason) Restarting the Visual SVN Se...

Setting up Bamboo SVN commit build trigger

Bamboo CI has a build in feature of having the subversion program trigger a build in bamboo when someone commits to the repository. I followed the instructions of what to put in the post commit hook but I am not sure what the 2 arguments are supposed to be for the postcommitbuildtrigger.sh file. Lets say the project name is TEST and t...

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 ...