svn

Subversion: error on checkout - Mac OS 10.5

I'm running Mac OS 10.5 I'm trying to do a checkout of a online repository to a local folder, using the svn checkout command: svn checkout [url] --username [username] --password [password] [targetfolder] It starts adding files to my new working directory as expected, but then throws the following error: svn: In directory 'svn/trunk/...

Grails applications and version control

Which directories/files should be excluded when placing a Grails application under version control? I don't want non-source files or artifacts to be carried in SVN for my project. ...

Can I combine multiple SVN directories into another single directory using externals?

If I have a SVN project set up like so: Project -- Subdirs -- A -- A1.txt -- A2.txt -- A3.txt -- B -- B1.txt -- B2.txt -- B3.txt Is it possible to use externals to combine the contents of the A and B subdirectories into a single directory elsewhere, so I'd have: Project -- Subdirs -- A ...

Set up a specific SVN Repository

I would like to set up an SVN Repository on this Old machine I have at home and make it available over the net. This Computer is quite old, so I want to use Ubuntu Linux. I browsed around for some time, looking for certain combinations, and have now made up my mind as to what I want, but I cant find anything that implements it all, and ...

SQL scripts under Subversion

I am a build engineer and responsible for our source control layout. We need to keep a version of all database objects and also group changes together with rollback scripts for pushes to production. We have development, QA, and Production environments and there are different versions of the database objects in each. One area we have t...

Help with SVN Setup

I am setting up VisualSVN. It comes with a "Repositories" repo. My question is pretty simple I hope, do I create a single repository under the root and then add a new folder for each project I want to manage? or do I create a new repository under the root "Repositores" for each new project? ...

How to prevent Subversion from merging binary files?

Hey all, We have the need to keep .dlls in our repository. Our team experiences SVN conflicts on .dll files quite frequently and it is super annoying. For some reason, even though the mime type of the .dlls are set to application/octet-stream, svn is still trying to merge them. From what I found here (which I swear the way things us...

git-svn: ignore case of svn usernames from authorsfile?

I'm tracking a svn repository using git-svn and have an authorsfile to get real names for the committers. svn doesn't seem to care about the casing of usernames -- there are commits with username variations like username, Username and UserName which definitely belong to the same committer. Unfortunately git-svn respects casing, so I have...

In what OS should I host subversion?

I have decided to go with Subversion for a source control repository for my personal and side projects and I'm now trying to decide what OS to use. Currently my file server for my home network is Windows 7 beta. I'm wondering if I should wipe it and install Windows Server 2008 instead? Basically I'd like to know if there are things I ...

SVN checkin as different users on Windows

I would like to have an option to select what user that I'll do my checkin as when checking in from Windows. When using TortouiseSVN it seems like the authentication information is stored per repository and it cannot be changed. What would be a good way to make it easily possible to checkin as different users using SVN in windows? ...

Failing to ignore svn-controlled directory when doing svn update

Based on http://stackoverflow.com/questions/116074/how-to-ignore-a-directory-with-svn I tried svn propset svn:ignore /foo/bar/ . But when doing svn update /foo I get this error: svn: PROPFIND request failed on '/foo/bar/' svn: PROPFIND of '/foo/bar': 405 Method Not Allowed (http://svn.assembla.com) The reason why I am trying ...

SVN analysis tool

I have been searching all over the net to find something remotely usable. I tried all kinds of HTML based tools for analyzing an SVN repository (commits by users, reports etc) but none of them are user friendly. I am interested in a desktop client (that does NOT depend on an external svn.exe to be installed on my system) that does just ...

SVN - Permission Denied

I have set up a Linux Server and installed Apache and SVN and dav_svn on it. Now, when I try to upload to https://x.x.x.x:x/svn/repo with Tortoise SVN I get Can't open file '/server/svn/repo/db/txn-current-lock': Permission denied I have Set up my SSL correctly (I can checkout, no problems, even remotely due to Port Forwarding). I'm ...

How can I index our internal source code?

Google Code Search has indexed Subversion and Mercurial repositories, so people can search open source projects. How can I do the same for my company's repository with the least effort and without publishing our code? We have Trac (with Subversion) at our shop, but it only indexes Changesets, and we also have Visual Source Safe. ...

Getting into Source Control

So I've decided it's probably best if I get some Source Control solution going to keep my hard work safe, and to help eradicate bugs between versions. I'm familiar with SVN as far as checking stuff out, but I have NFI about the committing side of things. What is a good Source Control solution, keeping in mind that I develop in Visual S...

Where to manage the most sensitive content you have under version control?

Do any version control systems allow you to specify line level security restrictions rather than file level? I know it would be horrible to maintain. If I wanted to never allow certain strings into the database should I be looking into the notion of hooks and manage all the very sensitive information in that hook layer? How do hooks g...

Branching from deleted path in svn

I want to create a branch off a revision that "doesn't exist". What I have so far: ("/branches" is shorthand for "http://mysvn/myrep/branches) /branches/1.0.x has revs 1-24900 I want /branches/myBranch to be at 24900 so I copy the /1.0.x I want /branches/1.0.x to be at 24887 so I delete it in preparation for... svn cp /branches/myBr...

How to use Svn and Perforce simultaneously

I have a project coded in python and I use svn for source-control. But now, I have a part of this code I need to commit with Perforce. As the source tree is quite large with lots of files, I don't want to duplicate the files on the different computers. So I want to keep working on SVN and sometimes, push the code on Perforce. But I have...

git-svn: revert a commit from a not master branch

Well.. I did some headless committing and merging and now I am deep in the .... Here's what I did: fetched trunk with git-svn branched off work git commit ed stuff to work git svn dcommit ted the cnanges to svn, (yes, this i where it gets interesting) git checkout master git merge work In this situation, git doesn't seem to understa...

Add file using SharpSVN

Hi, I would like to add all unversioned files under a directory to SVN using SharpSVN. I tried regular svn commands on the command line first: C:\temp\CheckoutDir> svn status -v I see all subdirs, all the files that are already checked in, a few new files labeled "?", nothing with the "L" lock indication C:\temp\CheckoutDir> svn a...