svn

Set Subversion root directory for access via svn+ssh

I'm having trouble setting Subversion's root folder for repositories. The path has gotten pretty long and I'd like to shorten it to "/". We currently access Subversion from clients via: svn+ssh://server.domain.com/Library/Subversion/Repositories/project/trunk and would like to shorten URL to: svn+ssh://server.domain.com/project/trun...

configuring svn on apache fails

Hello, I'm using xampp (just for local development) and have a number of virtual hosts configured using the standard httpd-vhosts.conf file to ease development, e.g. http://website1.localhost, http://website2.localhost I'm now setting up subversion, however on following the instructions I find on the web, when I add the following comman...

A simple question about SVN

When I use SVN client, should I use as local repository: the files that i'm currently editing (i.e. my Eclipse project) or should I create an intermediary local copy, and not the files I'm editing ? The reason I'm asking this is that I often need to update my local repository before to submit changes. When I need to update it don't ...

Setting up a project directory structure for git repo of a website

I'm working on a drupal website. I've been keeping an svn repository of my custom modules which I've recently ported to github to work with another developer. Coming from SVN I'm used to just being able to update my custom modules folder on the staging website directly from my SVN repository. But from what I've read (correct me if I'...

Ruby Subversion Bindings - No method error

I am working on a Subversion library and the first step is the checkout method. I have written a test for it that fails with the following error, which I do not understand. Can you help me figure out what happens? test_Checkout(SvnTest): NoMethodError: undefined method ` ' for #<Subversion:0x1054e6438> lib/svn.rb:23:in `checkout' ...

Why is this PowerShell script deleting svn:mergeinfo from the root directory?

We have a script to delete the svn:mergeinfo property from all folders inside a Subversion working copy, but not the working copy root directory itself. It's currently an NAnt build script invoked via a separate batch file, so I'm trying to replace it with a simpler PowerShell script. I've had three attempts at it, ranging from the naï...

netbeans subversion cleanup button

There is a cleanup button in svn-workbench Using it + update we can usually fix some svn bugs (for example "... is not a working directory") I cant find this function in netbeans: context menu -> subversion and in the team -> subversion where is it? upd: I have not in the context menu "Cleanup Working Copy" item (netbeans 6.8 under u...

svn working process

Hi, I know this is not related to coding. But this is important for coding, so posting here. What does Trunk, Branch mean. How does a release process go on in SVN? I have 4 layers . developer machine code. stage02 stage03 production what should be made the trunk? ...

svn diff: Compare my local uncommited changes with an arbitrary version of the file from the repository

Let's say I've checked out revision 10 of hello.c which is the latest one in the repository. I've made some changes to hello.c locally in my workspace, but I haven't committed it yet. Now, how can I compare this local uncommitted changes made on top of revision 10 with, say, revision 7 of hello.c in the repository? Thanks for your time!...

A very large directory in a subversion repository

Dear StackOverflow, I have a repository which contains a directory tree. One of the directories is a home for many thousands of files. This directory is very rarely modified, but it makes operations like "svn status on root dir" or "svn update on root dir" so slow that they are no longer practical. Is there a way to make my svn client ...

Programmatically adding, deleting and committing files into a subversion repository using Delphi

I would like to programmatically check if a file is versioned, and add, delete and commit files into a subversion repository using Delphi. Does anyone have sample code that might help me create the necessary functions and procedures? Thanks, Steve ...

Code repository hosts that support both svn and git?

Can anyone recommend hosts other than github ( 100% git ), codesion and beanstalk which support both svn and git? ...

Is SVN's relocate a safe option to synchronize code with two subversion repositories?

Variants of this question have been asked many times, but none of the answers clarified what I am interested in: I would like (obviously... :) to synchronize my local working copy with two repositories on two different servers. If I use svn switch with the --relocate option, is it possible (and reasonably safe) to keep in synch with bo...

Renaming SVN repository project name

Hi all, I have migrated some project from CVS to SVN. Now I need to rename that project into another name.What can be the best possible way to rename it, keeping the all the history intact.The project folder contains some 100 numbers of C and its header files.Any kind of help will be appreciated. ...

Does "svn update" download everything or just the diff patches?

I need to know a bit about subversion internals. Anyone know why actually gets transferred during a svn update? Say I have a huge file in the repo, with just a few lines changed. Will svn update download the whole file or just the changes? Thanks! ...

What is the best way to use SVN in Visual Studio 2010 solution

Hi, Can anyone recommend the best way to use version control system in Visual Studio 2010. I'm currently working on a asp.net mvc 2 web application and want to use version control system. A SVN repository has been setup, and internaly in my company they use Tortoise. I have no issues in using Tortoise, but I wondered if there was a plu...

Maven2 release plugin doens't want to tag

Hi all, We have a multi-module project on which I wanted to use the release plugin. The setup in subversion is /svn/repo/project -- branches -- tags -- trunk -- -- project -- -- pom.xml -- -- module1 -- -- -- pom.xml -- -- module2 -- -- -- pom.xml -- -- module3 -- -- -- pom.xml -- -- module4 -- -- -- pom.xml This proje...

Testing functionality without providing access to the whole code?

Suppose i outsource my existing php project for adding more functionality to it. I don't want to provide the whole code to the outsourced developer to protect my ip and idea. So say, using svn i create a branch for the project. And then put the code files that will need to be modified to add new functionality in that branch. Then how...

Is there a practical limit on number of tags in SVN?

Here's a similar question for SourceSafe. We have a single SVN repository storing sources of numerous projects. Among those projects something like 25 are built every day each by a dedicated daily build. Once daily build starts it tags the sources with its own name (something like "Build of Project N version X.Y.Z", Z increases with ever...

merging two git repositories, one a git-cvs clone, one git-svn clone

I am using code from a CVS controlled repository (@sourceforge). Instead of using it directly, I was using a git clone of it made by someone else. In my clone I have several modifications. In the meantime the upstream project has switched to SVN (@googlecode). I was able to create an automatically updated git clone of that myself. Now ...