svn

TargetProcess + SVN

I have a TargetProcess machine, and my developers keep committing code to SVN. How can I have TP automatically group builds so that I can know which bugs, were committed during which builds? Thank you. ...

Error on installing SVN extension with pecl

Hello, I'm trying to install the following PHP extension: http://php.net/manual/en/book.svn.php But when I do pecl install svn-beta I receive an error message that it can't locate the svn_client.h file. I searched the net but couldn't find any useful reference to this error. Thank you for your help. Installation result: root@myUbuntu...

SVN find revision of tag

Is there any way of showing which revision is equivalent to a certain tag? ...

SVN (Subversion) Problem "File is scheduled for addition, but is missing" - Using Versions

I'm using Versions for SVN. I attempt to commit and get this message: Commit failed (details follow): '/Users/mike/Sites/mysite.com/astss-cvsdude/Trunk/cart/flashfile.swf' is scheduled for addition, but is missing I suppose this is because I had added files to the repo, and then deleted them via the filesystem. I'd like to ...

How do I use TortoiseSVN for this? It doesn't work.

svn co svn+ssh://174.13.24.17/home/svn/dragon-repos/ That's how I check out on my linux box. I would like to checkout on my Windows machine. But, Tortoise SVN asks me for the "URL" (I don't have a URL...I just do it like that, above) Can't I just run the command line to check out, like that? ...

Subversion Protocol

I'm researching the feasiblity of building the ability to browse a subversion repository from my web app. I'm developing in asp.net. I've read some mentions of WebDAV, but nothing that seems particularly concrete. Does anyone know anything about the protocol that is used to communicate with SVN? Or even better, a .net library that ca...

SVN remove deleted

How can I remove files&directories (from my localcopy) that have been already removed from svn repository (server) by somebody else? I'd like to keep my changes (and added files) untouched. And by "my changes" I mean that I have added some new files but their are not yet under svn (their have the "?" status). After performing "svn upda...

Find difference between trunk and branch - svn?

Is there a way to find the differences between the trunk and say a branch 0.4.x? I need to create a tag - however I can't remember if my latest corrections were done in the trunk or the branch. ...

Subversion - Tool/Utility/Software for forcing all commits to have a Change Request number?

Are there any kind of utilities/tools/software to bolt onto Subversion that forces committers to commit against a Change Request number? My company currently uses Starteam source control, which has numerous issues we believe would be rectified in SVN. However our business process insists that everything is committed using a CR#, so unti...

Cake PHP, omit folders from svn

Hello, I have a site developed with cakePHP. I have it under source control with svn. I develop it with the Aptana Studio, both in Linux and in windows. there are some directories like app/tmp which as the name says holds temporary data. Is it possible to omit the folder for being checked by aptana studio where to be commited? I right-c...

How do I remove all traces of a file from Subversion?

Is it possible to remove a file, with all version history, from SVN? For instance if you add a file with confidential financial information simply to have it backed up, and then realise it's in a SVN sub-directory all your developers can see... ...

SVN Source control issues when merging changes

I have seen where changes have been made on one code file by two developers code like this: x++ End up like this: x++ x++ where due to carriage returns being inserted/removed (I think) one line has become silently merged as two lines of the same code (no conflicts) Everything compiles but suddenly tests are failing and weird behavi...

Hudson to automatically detect a job needs build (SVN HEAD diff)

We are using Hudson for continuous integration of many projects. I would like to know if there is an existing plugin or script that would automatically detect if a job needs to be built - but not actually build it, just send an email, add the job to a queue somewhere, or "flag" the build if it detects if the SVN repository modules have b...

How can I tell svn to ignore certain files anywhere?

How do I tell svn that every time, in any directory of any project, it encounters foo and bar it has to completely ignore them? ...

Error number 13 - Remote access svn with dav_svn failing

I'm getting the following error on my svn repository <D:error> <C:error/> <m:human-readable errcode="13"> Could not open the requested SVN filesystem </m:human-readable> </D:error> I've followed the instructions from the How to Geek, and the Ubuntu Community Page, but to no success. I've even given the repository 777 permissions. ...

How to add file revision (not the last changed revision) to Subclipse "Label decorations"?

Firstly, please beware I'm new to SVN. Then, my question has much in common with Get current revision number in Subclipse?. The (seeming) problem is (I use Ecpilse v3.5.0 (build id I20090611-1540)): My freshly installed Subclipse plugin offers "revision - last revision loaded into workspace" label under "Windows > Preferences > Team...

Import Xcode project into SCM / Subversion without duplicating project

Is there any way to click on something that Adds whole project to SCM/Subversion and also makes it a working directory by adding .svn folders? I create an XCode project as usual. Is the any way to just get Xcode to add the project to Subversion without import and checking out to a separate folder. My problem is that I have a /Dev folder...

Subversion - What are the differences between the SVN Checkout and SVN Update commands?

I understand that the "SVN Checkout" command will do the initial get of file(s) from the Subversion repository and bring them locally to your working directory/copy and that the "SVN Update" command will get changes to file(s) from the repository if changes have been made by others. It seems to me though that an "Update" is just a speci...

Compare folders and export modified files

Hi, I was wondering if anyone could help me with the following. I work remotely with other software developers on the same project. I use subversion and tortoise to manage my code. I don't think the other developers do the same. This creates problems when we try and share code, because we have to figure out which files were modified so ...

Source Control best practice - periodically updating your working copy from the repository

(Note: This question is not specific to Subversion - I'm just using it here as an example.) I know that the "svn update" command (or whatever the similar command is in other systems) will update your working copy with any changes to files from the repository. I also know that it's a best practice in source control to periodically do a...