svn

Subversion creating revision directories with too-strict permissions

This morning, I tried to commit a revision to Subversion and found that all of a sudden I did not have permission to do so. Can't move '/svn/db/txn-protorevs/21000-ga9.rev' to '/svn/db/revs/21/21001': Permission Denied Looking at the revs directory, I noticed that somebody had committed the 21000th revision, and the group write permiss...

How do I find out which version control system my working copy is from?

If you have some directories from different version control systems (cvs, svn...), how do you find out what type of repository each came from? ...

Why won't TeamCity run my Nant build file?

I have a simple NAnt build file, which attempts to perform an update from subversion on the specified directory. An example of the test build file content is: <?xml version="1.0" ?> <project name="Project_name" default="update"> <property name="root" value="C:\Subversion\UpdateDir" overwrite="false"/> <property name="build.repos" value=...

Web Interface to Versioning System

Does anyone know of any versioning system with a great web interface so that it can basically be managed and used from a browser? The interface would need to function in the areas of committing new code and viewing/downloading previous commits. ...

SVN (mod_dav) 403 FORBIDDEN OPTION request

So I'm trying to setup a subversion server using mod_dav with apache2 but when I try to connect it gives me a 403 FORBIDDEN error. Here's my default virtual host file NameVirtualHost *:443 NameVirtualHost *:80 <VirtualHost *:80> ServerAdmin webmaster@localhost ServerName hcs-dev DocumentRoot /var/www <Directory /> ...

TortoiseSVN is showing the Question mark decorators.

At the root of my d: drive, TortoiseSVN is showing the question mark decorators on all the folders. The d: drive is not a SVN working copy. How do I remove the decorators? ...

Path based authentication in Subversion failing for repository, but not path.

I am using path-based authentication with svnserve, but it is giving me permission errors if I specify a repository. However, if I just specify a path then it authenticates. In my authz file, if I do this it works: [/my/path] my_username = r If I do this, it does not work: [svn:/my/path] my_username = r I'm fairly certain that "sv...

Can an old exported set of files be compared to a subversion repository?

Here is the problem: We have all of our development under subversion, but our beta versions are just mish-mashed bits of exported files that were not all put there at the same time. Or, to put it another way, we make our changes to versioned files, and then when we think we are happy, we manually export them by simply copying them to a d...

Can a different (older) version of a similar directory tree be imported into SVN?

Is it possible to import a directory tree into subversion if a large number of the files already exist in the repository? Many of the files that will be imported will match those in the repository, both in path and content, but some will be older, and some will be newer, and some files will be in either the repo or the imported tree but ...

If you merge a specific set of revisions from trunk into a branch with subversion, what happens?

If I make changes in the trunk to 3 different files, say revisions 40, 45, and 47 respectively, where none of those files have changed since revision 15, how can I merge those revisions into the branch (made at revision 30 and unchanged since) so that I get just the changes between rev 15 and rev 40, 45, and 47 for each of the respective...

Using post commit hook to export in VisualSVN Server

What is the easies way to use post commit hooks in visualsvn server to export from the repository to a directory for staging/testing after a developer commits his changes? ...

Access Denied to all SVN Directories

I'm trying to delete several working copy directories, but I get an Access Denied on all the SVN files, running as admin or normal user. I've killed the Tortoise cache process, and cannot figure what is wrong. Any suggestions? ...

how can I search an svn repository for the existance of files in any revision

How can I search if a file named foo.txt was ever committed to my svn repositroy (in any revision)? ...

SVN Mergeinfo properties on paths other than the Working Copy root

I have an svn repository where I have trunk and a branch. I intend to merge the trunk into the branch at regular intervals, however, when I do this I see many property status changes, in additional to actual file content changes. On further investigation the property changes are mergeinfo properties. I wouldn't expect this because we ...

Retroactively Correct Authors with Git SVN?

I have a repository which I have already cloned from SVN. I've been doing some work in this repository in its Git form and I would hate to lose that structure by cloning again. However, when I originally cloned the repository, I failed to correctly specify the svn.authors property (or a semantically-similar option). Is there any way I...

How to manage a SVN project that is spread across multiple folders ?

Here is what my svn repository look like: / /libraries /libA /libB /libC /tools /projects /proj1 /proj2 /website I am making changes in libA and proj1. I want to set it up so that I can submit my changes in libA and proj1 together. The challenge in not to check out the entire repository. I would prefer the solution to b...

Best way to use svn for web development

Hello, I installed svn on my server and am wondering whats the best way to use it. For example I have apache folders of htdocs and cgi-bin. Should I put both the folders in svn? when i work on a project i usually have the project_name as the folder in each - htdocs/projname and cgi-bin/projname? Should i svn both? Is it a good idea svni...

Migrating from SVN to Perforce -- Tips? Experience?

We have a fairly large SVN repository which we are looking to migrate to perforce. We very much want to keep the ~20k revisions, the branches, etc, but in some initial tests the svn2p4 script that perforce provides wasn't able to replicate the full structure. Have people had success with this tool, or were there others that my google ...

Why does svn diff sometimes copy working files to a temp file?

I use an external diff tool with Subversion (Beyond Compare rules!), and one of the great features is being able to use the diff program to make some minor edits to the file as I'm reviewing the changes I've made. But svn diff works differently on different projects of mine. In all, the left-hand file is a temp file containing the late...

Is it safe to commit more files as a pre-commit hook?

I want to automatically commit the database when we copy files from one branch to the other in Subversion. Is it safe to use svn commmit as part of a pre-commit hook assuming that we do it in very specific cases? ...