svn

Is it possible to get a list of added or deleted files from subversion?

I want to retrieve a list of the files that have been added or deleted from our subversion repository over, for example, the last month. I'd prefer to have the file names, and not just a count. Is this possible from subversion command line, or would I need to use a script to trawl the log..? ...

.svn folder is not getting created whenever i do a checkout

i tried the following svnadmin create svn_repos svn import my_first_proj file:///c:/svn_repos -m "initial import" svn checkout file:///c:/svn_repos and the command returned A svn_repos\trunk A svn_repos\trunk\Sample.txt.txt A svn_repos\branches A svn_repos\branches\my_pers_branch Checked out revision 1. Yet the .svn fo...

How to download/install pre-compiled Subversion binaries for Debian

Been trying to upgrade my subversion installation, but due to (what I believe) are limited rights (I'm using hosted Linux account), I'm not able to properly "./configure" and compile the source code (see posts Post1 and Post2 if very interested) So, I'm thinking if I could just download pre-compiled binaries, the just might solve my pro...

release configuration management

Our windows deliverable has different sets of config files and binary assets for different customers. Right now the configuring is done by hand before packaging and its error prone. What do you think of using branches for each customer, and having the package build/script automerge the customer's branch with trunk? I'm less concerned ...

Single read-only user for svn

I'm doing some maintenance on a private svn server. Authentication is handled through Apache basic HTTP+mod_authz_svn. I need to have it so every user has read/write access, except for a single read-only user. The read-only user still needs to be authenticated, though. I setup my authz config file like this: [/] * = rw read-only = r Bu...

How to find out Subversion repository version?

How can I determine current version of my repository to see if I need to upgrade it (svnadmin upgrade)? In reality I'm hosting SVN with 3rd party and I want to find out if I need to ask them to upgrade my repos or not. I'm asking since 1.5 server will keep repo version at 1.4, unless I miss something? ...

How can I view all historical changes to a file in SVN

I know that I can svn diff -r a:b repo to view the changes between the two specified revisions. What I'd like is a diff for every revision that changed the file. Is such a command available? ...

Drupal Source Control Strategy?

In standard php or source code based projects we easily keep all of the code in SVN and each developer can checkout their own copy and collaborate on the same code. When developing a Drupal site however, much of the work is in "setup". Besides the theme and modules you don't really have any "source code". How do you run multiple ins...

How do I make Subversion use a third-party diff tool?

I need more than the default diff! I have recently purchased "Beyond Compare" and I'd like to integrate it with svn, so its launched when I type: svn diff foo.c How do I do this? ...

Looking for SVN Best Practices When Building Rails Applications on Ubuntu

First a bit of background. I have been working on the MS platform for my entire development career. Up until 2 weeks ago, I had never booted any other OS than 98/XP/Vista. I started using VSS long long ago, and made the change to SVN about 2 years ago. With SVN I use TortiseSVN and use the standard branch/tag/trunk setup. My projects ...

Where can I find prebuilt Subversion binaries for SGI IRIX?

We have a few SGI Onyx 350 and Orgin 350 systems running IRIX 6.5.x that we would like to install Subversion on. One of them will likely be used as a simple repository server running svnserve. The others will only need client installs. The Subversion webpage has links to unofficial binaries for many *NIX systems, including HP-UX, Sola...

Best way to see what files are Locked in Subversion

I finally got my group to switch from SourceSafe to Subversion. Unfortunately, my manager still wants to use exclusive locks on every single file. So I set the svn:needs-lock property on every file and created a pre-commit hook to make sure the property stays set. We are running Subversion on a Linux server. Most of us use Windows ma...

Automatically creating a tag in subversion

I maintain the build system at my company, which is currently using CVS. This build system is used across multiple projects and multiple CVS repositories. Whenever we have a release milestone, we create a tag. In CVS, this is easy: $ cvs tag TAG_NAME That command works regardless of the CVS module or repository, as long as it is ex...

Best practices for version control for Lotus Notes/Domino development

The title says it all - please share how you do version control for Lotus Notes/Domino development. I want to put in our SVN repository all the scripts, views, custom forms, script libraries, etc. Semi-automated methods are accepted as well (i.e. if I find a way to get all the event scripts for a form in one file, and to be able to pla...

How do I do a SVN Update from ASP.NET?

I'd like to call svn up from an asp.net page so people can hit the page to update a repository. (BTW: I'm using Beanstalk.com svn hosting which doesn't allow post-commit hooks, which is why I am doing it this way). See what I've got below. The process starts (it shows up in Processes in Task Manager) and exits after several seconds wit...

Subversion does not remember my user/password

Hi there. I've installed subversion on Ubuntu following this guide: http://alephzarro.com/blog/2007/01/07/installation-of-subversion-on-ubuntu-with-apache-ssl-and-basicauth It works, I was able commit and create different repositories, but somehow, from time to time (sometimes minutes),when trying to do a commit, I'm forced to reset or...

Use Subversion connector SVNKit 1.2.1 from trunk in Eclipse

I want to test a feature coming with SVNKit 1.2.1, which is not yet available on the update sites of the Eclipse or the Polarion project. I got a checkout as described under "Latest Development Version" on svnkit.com/download.php, successfully built it with ant and successfully installed it with the Eclipses software manager. Now I don...

Finding out which methods were changed by a checkin?

Here's the deal - I want a way to figure out specifically which methods were touched or changed within the last milestone/iteration so that the methods' Javadoc is checked for correct content, especially for the public API methods. Any ideas on how to do this, perhaps with an SVN hook? ...

Getting Netbeans and Subversion to play together nicely with libraries?

I'm having a difficult time figuring out how to add a .jar/library to a Netbeans project in such a way that I can get it committed to the repository. The typical way to add a library (per the Netbeans documents I've already gone through) ends up with it just being local to me. Anyone who checks out my project ends up missing my require...

Is there a Subversion API that can be used to program against in .NET

Is there an API to access Subversion from C#? ...