svn

List the files I own in subversion

So I have a bit of an issue. I work for a small startup (about 8 developers) and my boss recently decided that we need to put the owner of each file in the documentation. So I have been try to write something using svn blame and file to loop through every php file and see which files have my username on more that 15 lines, but I haven't ...

Is there any free, Project Managment CMS that can interact with SVN and has nice GUI (not Trac)?

Is there any free, Project Managment CMS that can interact with SVN and has nice GUI (not Trac)? ...

When do I check out TRUNK vs the FULL PROJECT in an SVN repo?

Hi All, Got a (hopefully small) question regarding SVN and checking out repos. Basically I see conflicting tutorials and suggestions regarding what to check out and when. Some will say: svn co http://my.repos.com/project my_project …while others say: svn co http://my.repos.com/project/trunk my_project When would I want to grab...

Override certain files from another Subversion repository

Hi, I'm looking at a way to have a subversion repository to be basically a copy of another subversion repository, except a few files from the other repository that I want to override. Basically, I would want to achieve something like this: / - branches/ - mybranch/ = if files are added in /trunk, they get added here - file1 = lat...

Subversion split repository by revision for archiving history

Hi, How do I split a repository by revision so that I can archive its history while still able to continue commit to the head repository. For example, lets say I have 1000 revision in my repository. I would like to split this repository into 2: The first consist of 1 to 500 revision while the second consist of 501 to 1000. The first ...

Writing Cucumber features for accessing SVN

I'm developing a tool that accesses SVN by running the command line SVN to get info and export. I'd like to write some Cucumber features so I don't have to keep manually testing but I'd like to mock out the SVN accesses. Should I switch to using a Ruby SVN library and if so, which one? Or is there a fake svn.exe that will provide pr...

What files should I ignore in an Android Project on SVN

I have added the 'gen' folder to svn:ignore, are there any others I should be ignoring? Update: There are some I am unsure about .classpath .project The .settings folder And also, to ignore a folder I am just typing gen into the ignore list in subclipse, is this correct? How would it know if gen is a folder or file? ...

Anyone use SvnMapper? please help me!

First I download SvnMapper(svnmapper.tigris.org) and install it! Then I start SvnMapper, the GUI need to input a URL of subversion, I failed in this step. I have a locally repository(means I use file:// protocol to access the repository myself alone), So I input one of my project svn URL to SvnMapper: file:///E:/myrepos/mathutil/trunk,...

Server certificate verification failed: issuer is not trusted

Hi, I am getting below error when running a target of ANT script. Error message saying that "server certificate verification is failed". Please help how to remove this problem. I am working in Windows XP. C:\apache-ant-1.8.1>ant checkout Buildfile: C:\Program Files\Java\apache-ant-1.8.1\build.xml checkout: [svn] Using command line i...

How to make a pre-commit hook that prevents non-UTF-8 file encodings

Is it possible to make a precommit hook for git or svn that can reject files not committed in a specific encoding? I have worked on several project where it seems to be a problem to stick to a certain file encoding (like UTF-8 for instance) ...

Security running a private live WAMP server including SVN

I have installed the latest WAMP server from http://www.wampserver.com/ on a VPS Windows 2003 machine for development purposes between a team of programmers that are geographically distributed around the world. We have also installed the CollabNet SVN server that is working over HTTP. I am concerned about security - even though this is...

Tagging individual files from multiple directories in Subversion

I have a repository composed of separate directories for different components of a system like this: System - branches - tags - trunk Component A file A file B Component B file C file D Component C file E file F Let's say I make some changes to file A and file C and file E an...

ankhsvn changelist

Hi, I am just wondering what is the purpose of the changelist and is there a way to revert file in a changelist in ankhsvn? thanks ...

Version control for my web server

I'm building a Web2Py-based web application and am doing most of my development right on a remote EC2 development server. I would like to version control the entire system, including all python modules, web pages, and Apache config files. The files are obviously scattered across my Linux box, but I would like to be able to checkout/com...

Release locks in Subversion recursively

Hello all I am having a problem with version control in subversion. I checked out a working copy from respository and got locks on all of its files. Then, without releasing the locks I have deleted the folder from disk. I can't delete the folder from repository, since its got a lock If the I and try to release the locks recursively, i...

How do I revert back to a previous SVN commit?

Suppose I'm at revision 50. But, I want to revert back to revision 45, and commit back as the stable version. How do I do that, in the most simple way? What if I want to do that with one file? What if I want to do that with the entire repository? ...

How to manage versions of a software in a CVS with lots of libraries

We are developing a large software project which consists of a large number of projects, components and libraries. Our management has decided that for every deployment a snapshot of the entire system has to be saved so when a problem arises we can easily have the exact version of the entire system. The usual solution would be to branch t...

Creating multi level repositories in SVN

We are planning to create a multi level repository with the following structure RepositoryRoot | --- Framework | | | --- ArchitectureProj1 | | | --- ArchitectureProj2 | --- Application | --- Project1 | --- Project2 But how do I create such...

Accessing SVN repository when the server is run in daemon mode

Am running the SVN server in daemon mode using svnserve -d. How can I frame the URL for accessing my repository in this case? ...

Is it possible to deny access to the SVN trunk, except for any merges from a branch

Possible Duplicate: How to lock SVN trunk except for merges from branch? I'd like to configure SVN for our development team to enforce: 1) All developers must work on a branch until they are happy to commit a changeset to the trunk 2) To prevent developers working directly on the trunk I'd like to disallow direct commits to t...