svn

SVN - Update complete local copy to HEAD Version

What, someone in my team made a "mistake" to delete several files in the current revision of the team repository. Is possible to update the current local version to the head revision? When I click on commit, subclipse doesn't recognize the missing files to upload them. Thanks in advance, rAyt ...

Is it possible to get ccnet 1.4 to use svn 1.6?

I see that my version of ccnet has a directory named svn-win32-1.4.6 (which i assume it uses to pull from SVN, which is on another server..) is it possible to get ccnet to use a newer version of SVN client tools? also, if so, would the new client tools pull just fine from SVN 1.4? ...

Git or Subversion for a TFS user

I have been on TFS since 2005 Beta 2, installed it, admined it, and used it on a daily basis at work. I would like a source control solution for my home projects, written with Visual Studio 2008 Professional, and I cannot afford TFS. After merging, the big thing for me is the integration into Visual Studio, I have just become too accus...

Limiting the memory consumption of tsvncache.exe in TortiseSVN ?

Does anyone know how to control the memory consumption of tsvncahce.exe used by TortiseSVN? It's consistently the largest consumer of memory on my machine. ~180mb on my Vista 64 machine. It uses more ram than VS2008, Sql Server and even my browser which usually has 4-5 tabs open. this just doesnt seem normal. I have already started hav...

continuous integration based on maven2

Hi, I am trying to figure out how to setup continuous integration using maven. What I want is: Check for new stuff in SVN If changes are detected, check them out Build and deploy I think all of this can be pushed into some shell script to make it be invoked by cron. Thus we will have automated continuous integration (nightly buil...

Error 210002 with XCode + SVN

I'm trying to use the built-in Subversion server on OS X per Apple's instruction I'm trying to use SVN through SSH and not apache It's not working out though. When I try to configure the repository, I get the following error: Error: 210002 (Network connection closed unexpectedly) Description: Connection closed unexpectedly As a sanit...

How to make a private branch of public SVN repository?

I'd like to make a private branch of a public svn repository. By this, I mean that there's a public, open source (codeplex) repository that I need to make my own, custom changes to. These changes wouldn't be accepted back into the tree. I want to: Check in the changes I make into my own source control, so that they're saved and versio...

Why is Subversion giving me this error message?

I am getting the following error while commiting data into Subversion: svn: Can't create directory '/usr/share/repos/db/transactions/' I have tried both command line and the eclipse-plugin options. Both give the above results. ...

How do you sanitize your source before doing a subversion commit?

Sometimes when you're working with your local copy you might have configuration settings stored that you do not wish to commit and is impractical to ignore the file because it also contains application specific settings. For example, a Django settings.py file contains both database connection details and project settings, such as which ...

SVN: locally ignore files when updating

Hi, I would like to delete/change some file in my local SVN repository and then SVN not to try update them while doing update (just for me on my local machine). I have to test one specific bug with this customers data, but it 12GB of them. So I would like to exchange some of DB file with dummy (empty with correct structure (MDB)) files. ...

Choosing a Subversion Server

Hi, After settling on Subversion as my RCS needs (and AnkhSVN/TortoiseSVN for my primary Subversion clients), I am trying to choose an SVN server. I have looked at a bunch of them: Local (ie file:///) Collabnet VisualSVN Server Tigris SilkSVN SharpSVN Apache module I’ve installed each in a VM to try them out but have not found enoug...

Subversion project structure?

When creating projects for subversion should each individual project contain its own trunk, branches and tags directories? eg. MyProject 1 - branches - tags - trunk MyProject 2 - branches - tags - trunk etc... OR should each project itself go inside an all-encompassing structure? eg. branches tags trunk - MyProject 1 -...

How do I do an exclusive checkout in SVN?

Hi, I'm looking for a way to make an exclusive checkout from SVN. Is there a way to automatically lock a file when it's being checked out ? If one user makes an exclusive checkout, and then another user makes a checkout to the same file, how do I generate some sort of notification or an instant message to the 2nd user that the file i...

Excel VBE inconsistent exports

Hi, I am exporting .bas files from an .xls file as outlined here: Exporting A VBComponent Code Module To A Text File to check them in into an SVN repo. I am encountering the following issue which causes a change on the files that is actually not real (or at least not relevant). statements like these get reformatted: rngTenors.Cells(i,...

Where can I find the file VisualSVNServerHooks.exe

I'm trying to activate the post-commit hook in SVN, and I don't have the file VisualSVNServerHooks.exe where can I find it? Thanks, Oded. ...

svn post-commit hook doesn't have permissions to create file in working copy directory

I am stuck with that task. I've written svn post-commit hook, that should update working copy on server, if something was changed. But seems to be it doesn't have permissions on that folder, but I've set them to allow everybody to write and read there. So here is the test script: #!/bin/sh REPOS="$1" REV="$2" DIR="/root/root/trunk" ...

Source control for Visual Studio that doesn't require a server?

Can anyone recommend a source control solution for Visual Studio? I am going to be the only person using it, I just need something to back up my data every so often or before I undertake a big change in the software. I tried AnkhSVN, but this requires an SVN server. Is there anything that can be used locally that takes the pain out of co...

.NET: Large revision numbers in AssemblyVersionAttribute

We have the convention of versioning our builds as [major].[minor].[micro].[revision], e.g. 2.1.2.33546. Our build-script automatically updates an AssemblyInfo.cs file containing [assembly: AssemblyVersion("x.y.z.w")] in order to embed the version-number in the assembly. But our Subversion-repository just reached revision #65535, w...

Subversion set up to use Windows Authentication but still asking for user / pass

I've set up SVN on a server (called 'dev') which is on our domain I used VisualSVN Server to do this.... I've set it up to use windows auth. I added my domain user to the allowed (Read/Write) list I created a repository, copied the url, and took a check out on my client machine. It still asks me for a username / password.... which obvio...

Basic SVN Usage

Preface Let me start off by saying that I'm a relatively new programmer and I have no prior experience with source control -- although after some reading, the concepts and general lingo are not alien to me. Background I'm about to start my first professional project (I'll be the only one committing) and I'd like to take this opportu...