svn

Does Subversion *Really* Require ActivePython?

It is listed as a requirement, but I'd rather not install it since I already have Python 3.1.1 installed. If I must, are there any issues with the two Python versions co-existing (on Windows)? From the ReadMe: http://www.collab.net/nonav/downloads/subversion/readme/svn1.6%5Fserver%5Fclient%5Fwindows.html CollabNet Subversion Server and...

How to create normal project directories from the svn version ?

I am working on a project that is SVN controlled, but as now i want to publish my project, i don't want my final project should contain ".svn" folders in them. Can you please suggest me the way to remove all those folders, so that i can deliver my project. But the final project must be separate directory structure, so that i don't distur...

with svn, check the revision number when offline

I'm offline (well, to be exact my svn repository in unreachable right now), but I have a fully fledged working copy on which I am, well, working :-) Now I need to know the revision number of a file. How can I check the revision number of a particular file (which by the way doesn't have the svn:keywords property) while being offline? I ...

making the subversion revision number visible in my R scripts

I'm putting this thing in my source(s)... (right, for now it's just one, plus the test scripts). REVISION = (function(x) substring(x, first=7, last=nchar(x)-2))("$Rev: 8727 $") but how do "real" R programmers do? ...

does svn switch ever delete locally-added files?

Hi, I need some clarification about the behaviour of "svn switch". I'm using svn version 1.6.5. From reading the manual, my understanding of the behaviour is that local changes will be preserved. So I would expect a locally-added file to still exist in my working directory after svn switch. However, my colleagues and I have seen sever...

is there anyway to download directory from webbased svn all at once

i have this link but i am trying to figure out how to download the entire directory and subdirectories at once .. http://dennisburton.googlecode.com/svn/trunk/PostSamples/ModelBinderPosts/ ...

getting the highest subversion revision in my `R CMD build` filename

a question following making-the-subversion-revision-number-visible-in-my-r-scripts R CMD build PKG creates a file named as Package_Version.tar.gz according to the fields in DESCRIPTION. not only isn't the strictly sequential numbering coming from svn very practical here, but its $REV: number $ format does not respect the number.numb...

svn propedit gives me a blank file

I know that the svn:ignore property is populated in my working copy, but when I do svn propedit svn:ignore . --editor-cmd notepad I get a blank file; editing and saving the blank file has no effect on the property. Using other editors gives a similar result. Why isn’t this working? I am using a 1.4.2 server and a 1.6.6 client on Wi...

AnkhSVN and/or TortoiseSVN - what's the recommended way to change directory structures?

I'm a fairly new user of Ankh and Tortoise. Currently ramping up on a VS2008 application suite that will have multiple .exe files, but with a lot of common code. Currently, we're sharing code between .exe projects by putting source files in a "Shared" folder tree, and using "Add as link" in all the VS2008 projects that need to compile ...

SVN FTP Upload with multiple FTP accounts

We have multiple ftp accounts for each website and recently have set up the folder with all the websites inside of a SVN Repository. What would be the best approach to set it up so it would upload on commit to the respective ftp account based on it's folder? ...

Generate javadoc directly from repository?

Is there a way to generate a Javadoc directly from an SVN repository? (or do I need to actually check out the code?) ...

If GIT doesn't track file renames how do we keep from losing these changes in merges?

In our application we often need to rename a file/package on a release branch and then merge this change (along with many others) to the trunk. A big problem is that many SCM solutions (our current is SVN) do not track file renames. When we go to merge a release branch of our product back to the trunk it becomes easy to lose these chan...

how much server space do I need for a subversion repository?

I'm going to be getting some server space of arbitrary size, and be given ssh access to it to set up a subversion repository. But, I have no idea how much space to ask for. For now, it's going to host my cms project so that my colleague can contribute to the code as well. But if it gets anywhere, we hope to expand on the system, possibl...

Subversion Access Control using Mysql and Apache (mod-dav-svn, mod-auth-sql, apache, mysql)

Hi, I am trying to configure a site on my Apache server to use mod_dav_svn with mysql authentication. I am using a database with three tables like this auth_users ---------- uid username passwd 1 UserA pass 2 UserB pass . auth_groups ----------- gid group 1 repo_rw 2 repo_ro . users_groups ui...

How do I fetch/clone only a few branches using git-svn?

The SVN repository that I am working with has a rather large number of branches. I am only interested in working with three of them and maybe another new SVN branch that will be created in the future. What I have figured out so far is that the command git svn clone URL -T trunk -b branches -t tags will clone all SVN branches and subseq...

Is there a way to create a shorcut to files using subversion? (windows)

Hi , I was wondering if there is a way to create a shortcut to files using subversion. the situation is like that: My projects structures look something like that: \bin private_binary.exe public_binary.exe \documentation private_doc.doc public_doc.pfd \sources ... When commiting a change - it is alsore...

Is it possible to import an existing svn repository into Google Code?

I have a private project I've been tinkering with for a while. I'm thinking of putting it up on Google Code in case anyone else finds it interesting. Is it possible for me to import my existing svn repository into Google Code, or will I have to create a new one and lose my change history? ...

Beginner: Setting up Subversion externals

I believe svn externals is what I want to use but would like some clarification on setting it up. I've never done so. My environment is: Mac 10.6.2 Xcode Cornerstone Subversion 10.6 (file based/single developer) Single repository My svn folder structure is: \projects\projectA \projects\projectB \projects\projectC \projects\projectX...

Tips on using Git with svn in presence of a large number of svn externals

I have a workflow(on svn) which I am trying to replicate with git, but am unable to. I have a large number of Django apps (which are plugged together to form a form a full project) Some of these are in one large repo and others are in smaller repos. My layout looks something like, app1 -> repo1/app1 app2 -> repo2/app2 app3 -> repo1/ap...

trac and subversion

What kind of integration does trac have with subversion repositories? Is it simply being able to view the source files or is there more to it? ...