svn

Subversion large repos import/checkout

My normal work flow to create a new repository with subversion is to create a new repos, do a checkout of the repos root, create my branches tags and trunk folders and place in the trunk my initial files. Then I do a commit of this "initial import", delete the checked out repos from my hard drive and do a checkout of the trunk. Then I ca...

PHP Libraries: SVN Access

Are there any decent PHP libraries available for accessing SVN repositories? Right now I just have some scripts executing commands to the command line and parsing the feedback, I'd love to find something less dependent on the command line and more tightly integrated. Any ideas? ...

How do I get a list of files that have been added to the SVN since a certain date?

I only want a list of files that have been added (not ones that have been modified) since a certain date. Is there an easy way to do this? Answer: Here's what ended up working for me, thanks guys! svn log -v -r{2008-10-1}:HEAD svn://path.to.repo/ | grep "^   A" | grep ".java" | sort -u ...

Is SVN 1.5 Merge-tracking ready for prime-time?

I'm already using SVN 1.5, both sever(VisualSVN 1.5.1) and client-side(TortoiseSVN 1.5.1) but we are using a fairly lengthy SVN Branch-Merge dance. How ready is the Merge-Tracking facility of SVN 1.5.x and is it yet possible to use it from TortoiseSVN? ...

How do I use the new SVN merge-tracking?

In my existing (Pre-SVN 1.5) merge strategy, we create a copy of the Trunk (called BasePoint) at the moment of branch-creation for referencing later during the merge. When we need to merge a branch back into the trunk, we perform 2 operations. Merge from BasePoint to LatestTrunk (Trunk has likely moved on since the original branch) in...

Best way to keep config files under SVN ?

What is the best way to keep your configuration files (e.g httpd.conf, my.cnf, .bashrc ...) under version control? In adition to the versioning benefit, I want the solution to work as backup as well, so that I can bring a brand new server and checkout (or export) the config files out of SVN directly A good touch will be to store the con...

SVN URL Format

I have TurtoiseSVN and ankhSVN installed. I created a repository on my computer.. "C:\Documents and Settings\user1\My Documents\Subversion\Repository\" I am trying to connect to this repository from my co-workers computer. What should this URL be? Any help would be great. Thanks. ...

using subversion with a really really big site

Hi guys, I'm a big subversion fan and am just about to take over a big site (200mb approx.) I've trimmed down the main site from an original size of 500MB!! I'm about to check this site into a new subversion repository. The problem is, my subversion repository is remotely hosted so that another colleague can also work on the site. I'...

SVN checkout or export for production environment?

In a project I am working on, we have an ongoing discussion amongst the dev team - should the production environment be deployed as a checkout from the SVN repository or as an export? The development environment is obviously a checkout, since it is constantly updated. For the production, I'm personally for checking out the main trunk, s...

Synchronizing SVN repo from local to server?

So i have this local SVN repo that i am using for my dev work on a particular project, and i also have a SVN repo setup on the customers media temple account for a more secure backup. I do all of my development on my laptop so i don't always have an internet connection (hence the local SVN), so i was wondering if there is an easy way t...

Why does TortoiseSVN (1.5.3) try to merge 1-Head when I pull from trunk?

I use TortoiseSVN 1.5.3 and VisualSVN 1.5.3 (Subversion 1.5.2) Suppose that I create a new branch (/branches/branch1) of the trunk(/trunk) then someone (also using TortoiseSVN 1.5.3) merges their branch back into the trunk. I try to merge from the trunk into the branch (to aquire all changes which might have beemn merged into the trun...

What happens if I don't use the --Reintegrate option in Subversion 1.5?

I thought I had figured out everything I needed to know about Subversion 1.5 and was happily merging between my feature branches and the trunk. Then I realized I've not been doing what I thought I had. I have not been using the --reintegrate parameter when merging back to the trunk from a feature branch. Specifically I use TortoiseSVN...

How do I mirror a SVN repository on CodePlex?

I'm the creator (and so far, only developer) of a CodePlex project. I've writing it on my laptop, using a Subversion repository on my home network. Submitting my changes to CodePlex via the TeamServer interface is driving me crazy, and I'd really like a simple way of syncing my svn repos with CodePlex via there new SVN interface. sv...

Subversion versus Vault

I'm currently reviewing the benefits of moving from SVN to a SourceGear Vault. Has anyone got advice or a link to a detailed comparison between the two? Bear in mind I would have to move my current Source Control system across which works strongly in SVN's favor Here is some info I have found out thus far from my own investigations. I ...

How to write an automatic "copy, check-out, change and check-in"-script for svn

Hi, we have a template project we often copy. so we can costumize the copy and still have a common template. To optimize the "copy & initial changes"-process, i though that i can write a little script, that does the following: copy the project-template (in svn) to another directory in the svn check-out the project and do some changes ...

How to see what will be updated from repository before issuing "svn update" command?

SVN newbie here: I've commited changes in numerous files to a SVN repository from Eclipse. I then go to website directory on the linux box where I want to update these changes from the repository to the directory there. I want to say "svn update project100" which will update the directories under "project100" with all my added and cha...

'Un-SVN' a working copy

I have a folder that is my working copy. How do I remove all SVN functionality from this folder? There is a reason for me doing this, somehow my master folder that contains all my working copies of sites, has somehow been turned into a working copy itself, so I have a working copy within itself as such. So, is there an easy way of remov...

Stored Procedure Versioning

How do you manage revisions of stored procedures? We have a BI solution on SQL Server 2005 with hundreds of stored procedures. What would be a good way to get these into subversion? recommended tools to script SP to files? ...

How to version milestones developed in parallel that may not be completed sequentially?

I am currently working on a project with five other developers and we are using subversion for our revision control system. We have established that we have 12 milestones leading up to the first release of our software. We have labeled the milestones using version numbers (0.1 through 0.12) and descriptive labels. For example: 0.1 - Na...

Which Eclipse Subversion plugin should I use?

Subclipse, Subversive, or something else? There's a bit of debate around the topic, can we come to some conclusion here? EDIT: It's been a couple months now, and I ended up deciding the plugin slowed Eclipse down too much, and was a hassle to use every time I changed a file from outside Eclipse. I ditched the plugin all together and ju...