svn

SVN client for SQL Server Management Studio 2005

I have installed Tortoise SVN and AnkhSVN, but neither one shows up in my SQL Server Management Studio 2005 under the Source Code Control options. I know they work because all my Visual Studio projects are working fine. Do I have to do install a different SVN client to integrate to SQL Server Management Studio? ...

PHP based version control?

Hi, I wonder is there any PHP based version control like on .NET version. I found that on .NET there some of version control web based, like SourceGear Vault, Sublime, etc. Now I wonder is there any version control like that which based on PHP and MySQL. I've try to explore SourceGear Vault and found that even it use installer but it to...

SVN GUI frontends for managing projects and users?

Hi all, Our hackerspace (091labs.com) is getting a few software projects started at the moment, and we're using Trac and SVN for bug tracking/source control. However, every time I set up a new projects I've to go through the whole speil in the command line of creating the Trac project, creating the SVN repository, configuring auth, edi...

php development workflow

I'm looking to setup a development pipeline that will allow me to separate my code into three categories: live, staging and dev I'm using a2hosting's shared hosting package with ssh access. Ideally I'd like to have three paths on the server for each one of those branches. I'd like to keep each version of the site into svn so I can quickl...

What determines the speed of an svn copy

Hi there, What factors determine the speed of calling an svn copy when packaging up a tag from trunk for a release? I've been using git for the year or two and on a recent project I've had to go back to using subversion, and calling svn copy is taking anything between 2 and 25 minutes to complete on my machine before I commit, without...

Managing a core library in Subversion

This is giving me major headaches! I'm having trouble even describing the problem in words. Basically, I want to be able to manage a core library (coreLib) of Actionscript classes with the following requirements: latest version is checked out when a new project starts. a dev can make changes to the coreLib and then commit them back in...

PHP - SVN how to use svn functions php ?

I'm a new to SVN. And i'am handling a issue about SVN. The issue is use php send a command to SVN by popen() function of PHP. With this solution , i have to become a master of SVN. But not me ^^! And i research php.net and get something about svn in under link. http://www.php.net/manual/en/book.svn.php And how i can use for php ? i ...

is there a way to recuperate a directory erased with svn rm after add but before commit?

I stupidly did an svn rm --force to a directory that had just been added, but not committed, thinking that it would erase the "add" but not the local copy. Is there any way I can recuperate the content of the directory? BTW the file was a .tex file and I was working with Texshop at the time..just in case it gives ideas... Tks. ...

Is it possible to do an un-revert in svn?

I have mistakenly done an svn revert on the wrong directory and lost my last days worth of work. I think this is a long shot, but is there a way to do an "un revert" in svn? ...

Move saved TortoiseSVN authentication to another machine?

Is there a way to move a saved login/password for TortoiseSVN to a network repository from machine to machine? Just got a new machine, know my username but don't recall my login to the repository. I know TortoiseSVN saves some auth info on the directories at %appdata%\Subversion\auth Moved over the file I found at svn.simple; I see my...

How to execute a Maven command and commit to Subversion as part of a release build?

I would like to generate and commit the Subversion changeLog every time I do a release through Maven. I've looked at "mvn changelog:changelog" but its output is in XML and I need it in a human readable format. I've found "mvn scm:changelog" to generate the output I need. What's a recommended way of doing this? I've briefly looked int...

Import Android Test Project into Eclipse from Version Control

I have an Android Eclipse project and an associated Android Test Eclipse project checked into a subversion repository. Given a checked out working copy, how do I bring the Android Test project into an Eclipse workspace? It's easy to add the Android project to the workspace (just File->New Project->Android Project->From Existing Source ...

svnclient.commit() + without usercredential

Hi How to avoid usercredentials while doing svnclient.Commit(). Note: I have to save updated xml file in SVN server using svnclient.Commit() without user credentials. SvnClient client = new SvnClient(); client.Authentication.DefaultCredentials = new NetworkCredential(UserName, PassWord); I want to skip the above code while...

Subversion (SVN) and static libraries (.a files) compatibility ?

Hello everyone, I can't add .a files (static libraries) into my repository. Why ? Is there any way to "force" SVN to accept them (at least as static files...) ? Thank you ...

how to find all entries in svn repo with an external to a given url?

I need to move the location of a component that is referenced by many projects with an svn:external. How can I easily find all locations that have an svn:external to this URI? Thanks Andrew ...

svn script to commit a set of deleted files

Hi, I've deleted many files from my local copy which were present in different sub directories of main directory. I want to remove all the locally deleted files from my SVN repository also. If I'm checking the SVN status of my main directory using svn st main_dir then all the deleted files are showing with '!' symbol which means the co...

quickly see latest committed file names in svn

Does anybody now a quick way to ask svn the list of the top n most recent filenames added the last commits? ...

Subversion svn+http access

Hi Currently we access our repo via svn:\, but recently the need to access a restricted set of files via http:// has arisen. We have certain raw html and txt files which we need to display directly from the repo using http://. Our repo is hosted by the svnserve process on a windows server and ALL access is on an INTRANET so there's no ...

SVN - User directory permissions

I'm using SVN (CollabNet Subversion Edge) and Tortoise SVN to manage a website being edited by multiple people. I'd like to limit access by some users to some directories (to prevent them seeing database credentials etc). They only require read access to one directory. Is it possible to do this in SVN? Thanks! Edit They are running...

I'm trying to call MSTest from a console app inside an SVN pre-commit hook, but getting an error?

I am trying to call MSTest.exe from a simple console app that is executed from inside an SVN pre-commit hook. If I use TortoiseSVN to Commit, it auto-runs the console app code below. (skip after the code to see what happens...) // CODE static void Main(string[] args) { string testPath = @"C:\Users\myname\Documents\SVN\Test\bin\De...