svn

Unable to install Git-core+svn by MacPorts

I am trying to install Git-core with svn to my Mac unsuccessfully by $ sudo port install git-core +svn ---> Verifying checksum(s) for db46 Error: Checksum (md5) mismatch for patch.4.6.21.3 Error: Target org.macports.checksum returned: Unable to verify file checksums Error: The following dependencies failed to build: p5-svn-simple subve...

What are effective methods to manage ownership of programs in source control systems?

Using SVN or Git the thought had occurred to me to use the directory structure as a meta data place holder. Each team would have a directory in a shared repository for their code. The more I think about it though the worse the idea seems. The reason it appears like a bad idea to me is that teams are not static entities. Teams can van...

Remove unnecessary svn:mergeinfo properties

When I merge stuff in my repository Subversion wants to add/change a lot of svn:mergeinfo properties to files that are totally unrelated to the things that I want to merge. Questions about this behaviour have been asked before here on Stackoverflow.com, as you can read here and here. From what I understand from the topics mentioned abov...

SVN how to resolve new tree conflicts when file is added on two branches

When merging a couple of branches (using SVN 1.6.1) where a file has been added on both branches (and then worked on in those separate branches) I'm getting one of the new tree conflicts: C foo.txt > local obstruction, incoming add upon merge I need the changes from both branches, but the tree conflict doesn't give me the us...

How do I edit and commit a single file from an SVN repository?

Using Tortoise ( command line solution is ok too ) SVN - without creating a folder on repository side - what are the steps to checkout a single file, edit and check back in with comments, thanks! ...

How do I connect to a remote svn server?

Heres the current setup. Home PC ---/ Internet /---> Work Proxy Server --/ LAN /--> SVN server Home PC running Windows XP. Work Proxy server running fedora-core (to which I can connect through ssh). SVN server is inside the Office LAN running Windows XP. I want to connect to the work svn server commit changes, update and checkout fr...

How can I do a single SVN commit across multiple externals at the command line?

This may be impossible, but I'm going to ask anyway. Without going into the details of why it's like this, I have two primary checkouts that I work in, one for the production release branch, and one for trunk. Each of them is a small collection of svn:externals references to sub-projects, with no direct content under the checked-out sv...

How to tell SVN to ignore files for all team members

I have various files that I want to be ignored by SVN when committing. I know that I can go into TortoiseSVN and ignore them in various ways. I know that I can run svn propedit svn:ignore from the command line to do the same thing. The problem is that I have to have everyone on my team to do that, which is a pain. Is there a way that...

Manage XML documents in subversion ignoring formatting

I need to manage XML documents in Subversion but don't want to manage the formatting which may turn out differently depending on who is editing the file. I see two solutions: Either format the file each time with a known formatting before checking in. Or give svn a diff program that actively dismisses formatting from the diff algorithm....

SVN Default folders - Must they be used?

I've seen repositories in SVN that did not at least create a local trunk, branches, and tags folder on the client. So is are the default folders required for use with SVN (I'm using tortoise) or what? I don't see why some people have the folders but some do not in some implementations of repositories. ...

How do I minimize source control-deltas when changing Word files?

Is there something I can do or consider when working with Word files in source control/Subversion in order to minimize the size of the changes in the repository? Background For a project we have a Word document with our functional specifications with screen shots from a prototype in source control (Subversion). The Word file itself is ...

migrating data from VSS to SVN

How do i migrate my data from VSS to SubVersion?? ...

Unable to use git-svn in Mac

I installed Git with svn in MacPorts by sudo port install git-core +svn I have tried to use git-svn unsuccessfully by git svn egUrl and git-svn egUrl How can you use Git-svn in Mac after MacPorts' installation? ...

TortoiseSVN remaps source folders

I recently had to change my development to another PC. I installed TortoiseSVN because I still had source code lying around that had still to be checked in SVN. But apparently the new installation of Tortoise does not recognize my source folders, although the '.SVN' folders are still there I see no overlay icons appearing on the files. ...

Need good scheme/workflow for managing database objects using Subversion

How do you track/manage your stored procedures, views, and functions in SQL Server? I'd like to use Subversion, but it looks like I would have to just save & commit the CREATE/ALTER statements. That might work okay for me, but I suspect I'd end up doing a lot of nagging. Is anyone using versioning with their databases? Is there a bette...

Updating from svn repository returns "Could not read chunk size" error

When updating from subversion repository using tortoise svn client I get error looking like that: Could not read chunk size: An existing connection was forcibly closed by the remote host. It doesn't prevent me from updating, just interrupts update process, so that I have to repeat update several times, before it is complete. What can...

cvs2svn fails with "xxx is not a valid ,v file"

I finally found an answer to my question when I wanted to post it! However I'll still post it, including my answer, in case it helps someone else: When converting from CVS to Subversion cvs2svn failed on some files with the message "xxx is not a valid ,v file" What's the problem? ...

How do I know which files in a directory arn't in my SVN repository?

The tile is exactly my question. [edited out mistaken code] ...

How do I learn to use SVN effectively?

I just asked a rtm worthy question about SVN. I've used SVN for several years and I manage several repositories used for different projects; apparently, I've been managing to get by with my simplistic mastery of SVN's client app. How do I get to the next level (of effective SVN workflow)? How do I learn to master the app when I don't, i...

Best way to prevent changes on a branch with Subversion

The way we use Subversion is to work on the trunk, feature branches for significant features (> 1 days work) and release branches. We delete feature branches once they are happily merged but we want to keep release branches around in case they are needed for bug fixes and so on. Each of us checks out the root of the project as a minimu...