svn

VS2010 Integration with Subversion

I might be in the minority, but I really dislike how the Subversion client integrates into the Windows shell. Is there a Subversion client that simply integrates into VS2010 and that's all and doesn't mess with the Windows shell? ...

How to commit this file to svn?

I'm on a Mac and would like to commit a file to svn but get an error that the parent folder is lock. Description : Directory '/Developer/Projects/myappproject/trunk/targetfolder/myapp.app/.svn' containing working copy admin area is missing Status : 155005 File : subversion/libsvn_wc/lock.c, 947 I run a cleanup from trunk: svn c...

How to protect checkout of code for multiple modules within a project using SVN

We have several independent modules (e.g. mod1, mod2, mod3 ...) under a project 'proj1'. How to protect checkout of code for multiple modules within a project using SVN. We would like to provide user1 access to proj1/mod1 and user2 to proj1/mod2 and .... Would this be possible or should I have to create multiple projects. ...

SVN - Not able to commit files (Can't create directory - no such file or directory)

I wanted to move our existing repository (from location A) to a new linux server (location B). So, I created a new repository in that server (location B) with the command:- svnadmin create --fs-type fsfs <repository_name> Then I copied the db folder from location A and overwrote that of location B, because I want to keep the previous ...

SVN ignore that is local to working copy?

Is there any way that I can ignore a file in my local working copy without polluting the svn properties? I don't want my local ignore pattern (e.g. temp files) being published to repository and cause repo having lots of useless information. Just like in git, I can have .git/info/exclude. Is there any similar way in SVN? Thanks ...

Modified directory structre in project, now SVN won't allow me to commit.

I am using an SVN repository to hold revisions for a project. About half way through (having commited several times) i changed the directory structure of the project, and renamed some files. Now when I try and commit it tells me that the path to an old file (that was renamed, and moved) was not found. Also I am the only person working ...

TortoiseSVN: Show status of multiple working folders in parent folder

I have repository configured like this: \Util_1 \branches \tags \trunk \Util_2 \branches \tags \trunk ... Now, on my local disk i have: \dev \Utils \Util_1 \Util_2 In Util_xx folders are only trunks. If I enter the Utils folder, TortoiseSvn shows status icons for each Util. Unfortunately, Utils folder tha...

VisualSVN server backup

Hi, I am working on C#.Net product. I am using VisualSVN source control server. I want to take sourcecode backup on every week from VisualSVN server. I don't have any idea taking backup. thanks ...

Using Subversion for managing Web service contracts

Hi there, I'm looking at using Subversion for managing WSDL and XSD artefacts, where I have a service catalogue of around 60 services. Does anyone know of any articles recommending best practice around this with regards to the granularity between tagging and versions of services. With SVN, it appears that you can only tag from the tru...

SVN - how does removing a bin folder cause the src folder to be removed instead?

Hi all, There was a bin folder in version control with a bunch of .class files and other junk that should not be versioned. Could someone please explain to me how the following commit: 529 svn rm --force bin/ 530 svn ci -m "Bin should not be under version control." Leads to the following: Revision 249 Author: ndunn Date: Mo...

SVN quickie: Renaming a parent branch.

Sorry for what is essentially a newbie connection: If i have a branch, that i essentially am using as parent, i create a few children branches from it, and then rename (i.e. copy and delete) the parent, won't the children branches be fatherless and hence lose considerable amount of their history? ...

SVN not seeing changes

Hi all, I just ran a perl script to replace all occurances of one word for another for my whole project. ie: perl -e "s/OLD/NEW/g;" -pi $(find ./ -type f) I want to commit these changes to subversion, but when i run "svn status", none of the modified files appear on the list. The same thing occurs in TortoiseSVN using the "Check fo...

Can Version Control System help me protecting my code?

Hi, Can a Version control System(like Subversion) help me protecting my code? I'd like to hire outside freelance coders(or an outsourced team) to work on a web application project. I'd like that outside coders working on the project should have access to only that part of the code on which they are working and not to the complete ...

subversion repository management

In my project, every bug and/or enhancement must be developed in a branch before getting merge in the trunk. Since the branch (copy trunk) are not deleted after completion, we have actually more than 200 branch unused in our repository (new project). I recently notice a slow down from the server for small operation in the repository. My...

Subversion Working Copy on Network Share don't show Subversion Status

Hi, I am very new to the Subversion system but based on my experience on TFS and CVS, I belive I can have the my working copy on a network and it wroks as well. But only problem I am facing now is that when I checkout files from Subversion system, it doesn't show subversion file status on checked out file on network folder. If I do th...

Changing a file tree in tortoisesvn

Hi all, We have a subversion repository which was set up without using the standard \trunk \tags \branch layout and now after a couple of years we are looking to rectify this. We use tortoiseSVN. Our current system is that we have a "dev" folder with various subdirectories for UI, Business Logic, etc. Ideally, we would want to have a ...

Using $Rev:$ SVN keyword in C# code?

Does anyone know what the syntax is to use the file revision keyword within the code in C#? I know how to use it in SQL Server but I can't seem to get the syntax right. I have already added the property to the file in which I would like to display the version. Thanks! badPanda ...

What WCF client files do I need to check into SVN

I have added a service reference to my visual studio project, and now I want to check that project into SVN. My question is, which of the files need to be checked in for the next person to be able to build the project. The files created include .svcinfo .xsd .disco .datasource .wsdl .cs and .svcmap. ...

CC.Net cannot get code from SVN: Source Control Failure (GetModifications)

I don't know why setting up CC.Net can never be easy... sigh. All I'm trying to do is get CC.Net to download the code from SVN and that's it. Won't work. Here is my config (paths changed to protect the innocent): <sourcecontrol type="svn"> <executable>C:\Program Files\Subversion\bin\svn.exe</executable> <trunkUrl>svn://MyCompany/...

SVN export through post-commit hook.

I need to make certain files in a repository available to non-SVN users. I can do this manually using the export subcommand, but would prefer an automated method, possibly using a post-commit hook. How can this be done? ...