svn

Subversion: Expected format '3' of repository; found format '5'

Well I've gotten myself in a pickle I did the subversion 1 click setup and it worked great. However, in setting up my repository I accidentally committed a file that I shouldn't have. Rather than jumping through the hoops of purging a file I deleted the repository and recreated it using "svnadmin create" as recommended to me. Now how...

SVN says I need to perform cleanup, but the cleanup fails.

!!! This is not a duplicate question since the solutions offered in the other topics didn't work for me. When I try to commit: Error: Working copy 'D:\Webs\Drupal 6' locked Error: Please execute the "Cleanup" command. When I try to do a cleanup: Cleanup failed to process the following paths: D:\Webs\Drupal 6 Does anyone know how I c...

SVN creating trunk directory on existing repository

I am working a project that does not have a trunk / branches / tags directory structure - ie. everything is in the root of the svn repo. I would like to create a trunk directory and in the root directory, and move everything in the root directory into the new trunk directory. What is the best way to do this? The first thing I consider...

Better way to revert to a previous SVN revision of a file?

I accidentally committed too many files to an SVN repository and changed some things I didn't mean to. (Sigh.) In order to revert them to their prior state, the best I could come up with was svn rm l3toks.dtx svn copy -r 854 svn+ssh://<repository URL>/l3toks.dtx ./l3toks.dtx Jeez! Is there no better way? Why can't I just write someth...

Is there an equivalent to Trac written in PHP?

Is there an equivalent to Trac written in PHP? I need something that integrates with SVN and is free. It should allow me to browse the SVN source, have some kind of bug tracking and show recent changes in the SVN. A wiki isn't essential. Thanks in advance. ...

Best reflection of extract-interface refactoring in subversion

I'm extracting an interface that I would like to retain the original name. The actual class will get a "Impl" suffix, in accordance with our naming conventions. I want to know how to best reflect that in subversion so that the history "AppPropertiesImpl.java" covers its life as "AppProperties.java". As for the new "AppProperties.java", I...

Subversion - how do I control user access for single repository when SVNParentPath is used?

I have subversion repositories that are working fine with password authentication required for all users. My config is posted below. How do I go about modifying this configuration so that I can allow a single user to have read-only access to one of my repositories? The example provided needs to work with SVNParentPath not SVNPath. The ...

SVN/Tortoise - Label generation

In Clearcase I can generate a "label" for a given set of files and always go back to that label to regenerate all the files as they were when I generated the label. How do I do this in Subversion? I'm using the Tortoise front end [Windows] to SVN and I'm not sure how to accomplish this functionality. ...

How do I keep an svn:external up to date using git-svn?

Treating my repository as a SVN repo, I get: svn co http://myrepo/foo/trunk foo ... foo/ bar/ baz/ -> http://myrepo/baz/trunk Treating it as a Git repo, I get: git svn clone http://myrepo/foo --trunk=trunk --branches=branches --tags=tags ... foo/ bar/ I can clone baz to my local machine elsewhere and add a symlink, but that's...

Best way to let third-parties work on your site

What's the best way to let third-party users work on your website? We have our site in SVN. Do we just give them SVN access, let them check in code, and then I push to dev - and then to production? ...

How can I limit git log (or svn log) to revisions that regard one particular file?

I'd like to see a series of diffs for a file. I'd settle for simply the log listing restricted to only those entries that modified the file. ...

git-svn on Windows. Where to get binaries?

Hi, I want to use git as a local repository against a remote SVN repository. I installed version 1.6.0.2 from http://code.google.com/p/msysgit/downloads/list. According to the documentation synchronization is done via the command git svn or a separate command wrapper called git-svn Neither of them is available in my installatio...

How do you track database changes in source control?

We use SQL Server 2000/2005 and Vault or SVN on most of our projects. I haven't found a decent solution for capturing database schema/proc changes in either source control system. Our current solution is quite cumbersome and difficult to enforce (script out the object you change and commit it to the database). We have a lot of ideas of...

Subversion and using IIS for ASP.NET development

Hi, I'm a total newbie to SVN and haven't been able to find an answer for the following situation. I have an ASP .NET 2.0 web app that I am developing. I am using my local IIS as the development web server (i.e. not the Visual Studio web development server). My development environment is VS2005, Vista, IIS7, TortoiseSVN / AnkhSVN. Visu...

Does this sound like a good idea? ( svn / version control / webdev / deployment )

I've recently gotten charged with designing and implementing a source code version control, testing, and deployment scheme at the company I work. Personally I've worked with Subversion for a few years on my own projects. But I've never dealt with it at this big scale. Hence I thought I'd ask here if anyone has any comments or suggestion...

Pattern matching characters for svn:ignore

Making echo of a question around the web: Is the syntax for svn:ignore patterns documented somewhere? The only pattern matching character I could find in the SVN book under 'svn:ignore' is '*'. Subversion Book: 'svn:ignore' In particular I want to match a 32 character string (md5 hash named directory). ...

how do I create a dump file from my subversion hosting account?

I have my SVN repository hosted somewhere. I want to move to somebody else. How can I create a dump of my repository so I can import it into my new host? This is all I keep seeing: svnadmin dump /path/to/repos > repos.dump My repository is hosted, so it's not local. ...

Setting svn:ignore flag using svnkit

I am using SVNKit in my application. I have a scenario wherein certain files should be ignored when doing svn operations. i.e. I need to set the svn:ignore property for certain patterns. How do I do that using SVNKit? ...

How do I bind to just one IP address with VisualSVN Server?

I've installed VisualSVN on my Windows Server 2008. I have several IP addresses on this server, but I want VisualSVN to only bind to one of them. By default it binds to all available addresses. How can I make VisualSVN only handle requests on one IP address? I tried adding BindAddress xxx.xxx.xxx.xxx to httpd-custom.conf and rest...

(Visual)SVN ignore files by Regex

Hi, I need to exclude files with the following pattern: ProjectFoo.Data[0-9]{14}.lgp How can I use RegEx for (Visual)SVN ignore list? ...