svn

Sync Subversion and Harvest repositories?

How would you integrate Subversion and CA Harvest if using Subversion to sync work across a team and Harvest as the enterprise system of record? An approach I'm investigating is creating a script that loads a SVN tag into Harvest, but am curious if anyone else has done something like this before or there is a better way to approach the ...

How to quickly search a subversion repository?

We are looking at writing a site using Lucene.Net to search our Subversion repository but before we do that has anybody else already tackled this problem? Something like google for our private source code would be great. Thanks ...

Does Visual Source Support SVN-like Post Commit Hooks?

I am forced to use Visual Source Safe at my current job. Yes I know, It's like a stick in the eye. But VSS won't go away, VSS is here to stay. I was wondering if there is any way to do something similar to Subversion's Post-Commit hooks in VSS? Coupled with a few deployment scripts, this would make our lives much, much easier. ...

Free Text Editor with built-in SVN Support for Windows?

The title says it all. I'm looking for a free text editor which has built-in SVN support for Windows, to avoid having to switch to Explorer to do Commits and such. Googling just produces the usual phony sites with lists of products that have nothing to really do with a free text editor supporting SVN. Any suggestions? ...

SVN workflow, LAMP

Hi All, I am trying to implement some method to the madness here. We have three devs,(Me + 2), I have tortoise SVN running on my windows machine, the other two dont do revision control- yet! We have a single server, with a single checkout for each site that that we all work on (we all work on the same checkout). I am trying to think w...

CVS to SVN one branch at a time

Is it possible to transfer a repository from CVS to SVN one branch/tag at a time? Because each branch is currently a different project, I would like to be able to transfer the branches one at a time (when there is little activity on a specific branch). Eventually the branches will all exist in the same svn repository. ...

svn create tag problem

When I run the following command svn copy http://host/svn/someproject/trunk \ http://host/svn/someproject/tags/uteeni -m"adding externals" I get a svn: Cannot mix repository and working copy sources error reply, what am I doing wrong? The tags folder has been added to the project and the trunk as well. ...

Setup Turtoise SVN+SubWeaver for existing dreamweaver site?

I installed both Turtoise SVN and SubWeaver, I now have a SubWeaver drop down menu on the top of dreamweaver. I read a lot of the help files which basically explains how the system works and explains Copy-Modify-Merge. I am trying to set this up for my already existing dreamweaver site though, I am not finding information on how to do th...

Subversion: Check out only those files affected during a specific commit

In Subversion, is it possible to check out only those files affected during a specific commit, provided you know the specific revision number? ...

Can the SVN and HTTP protocols be used safely on the same repository simultaneously?

We would like to evaluate whether the SVN protocol works better for our team than HTTP, but we don't want to commit to a full switch just yet. Right now we have an Apache sever serving up our main repository. Can we safely use svnserve.exe to with the same repository so that a few of our developers can test it? My initial guess is that ...

How can I manage production/test/development configuration info using subversion?

I'm working on a combined web/client app that has branches for production, test, and development. I'm using svn post commit hooks to deploy updates to the production and test servers. The client app needs to point to different urls depending on production, test, or development. How can I manage this using subversion? Options I've thought...

Can git and subversion play nice together?

I have recently decided to take the git plunge, and am really enjoying using git, even on Windows. My current open source project lives on subversion, all devs are familiar with subversion so I would like to keep subversion as the "source of truth" for now. Nonetheless, I want to use git, so I went ahead and created a copy of the sou...

good stand-alone svn client

Hi - I'm currently working with partner on a PHP project. We both edit directly to a local server (all files are stored on the server, which is also running a WAMP stack). I'm looking for an SVN client that will monitor and save all changes to the htdocs folder, and will update a remote SVN repository, through the web. It would be a g...

SVN and revision numbers

Say I have 3 files foo.txt, bar.txt and moo.txt all at revision 1. Say I commit foo.txt and bar.txt ten times. So they are at revison 1.10. Since in SVN there is a single revision no moo.txt also has to be at revision 1.10. Now if I see the history of moo.txt then, will I see the history of commits from 1 to 10? The reason I am asking ...

SVN and revision numbers

Possible Duplicate: SVN and revision numbers Say I have 3 files foo.txt, bar.txt and moo.txt all at revision 1. Say I commit foo.txt and bar.txt ten times. So they are at revison 1.10. Since in SVN there is a single revision no moo.txt also has to be at revision 1.10. Now if I see the history of moo.txt then, will I see the his...

MS doc SVN

hi there I;m student in CS and for this summer(with 3 of my colleagues) we have to do a SVN for MS .doc files. Do you have any idea if this kind of thing has already made before. Is an open source project already available for that? If you were in our situation, how did you start your research? btw: we have to use PHP for this projec...

"Mark" svn export with revision

Hi, I'm looking for a solution for the following situation. We're using Subversion, and besides the development enviroment, where we use checkouts, we have a test environment, which is supposed to resemble the production environment as closely as possible. Therefore, we now have it set up so that the environment is updated by using sv...

Subversion: Get all files from a revision

How do I export/get all the files belonging to a revision? For example: On revision 5434 if we have commited 5 files, how do I get all the 5 files on the specified revision? Something like svn export with revision number, but I only want the files that I commited on that revision. Edit: Duplicate of "Subversion: Check out only those ...

How do I find the number of times a file was revised in subversion?

Given a file, how do I find out number of times the file was revised? The head revision number may be in hundreds but I would have revised a file just 4 times. Thus given that file, I want 4 as the answer. Sounds pretty trivial but I was unable to find any command to achieve this. Can someone help? ...

Trigger Cruise Control.net build using post-commit hook

I'm looking for a way to trigger a Cruise Control.net build from a subversion post-commit hook. I want this to in order start the build directly after an commit. I know about the normal way of doing this (polling the server) but it seems unnecessary to keep polling the server when it can be done using a hook. One thought would be to in...