svn

Eclipse keeps setting incorrect repository root

I have a project here: svn+ssh://[email protected]/folder/ProjectName The repository root is svn+ssh://[email protected]/folder No matter how many times or how many ways I try checking out ProjectName, eclipse always helpfully tells me that the repository root is svn+ssh://[email protected]. I have another project in another repository: s...

Get hudson to checkout source to a specific directory

This seems like a simple task but for the life of me I can't get Hudson to checkout my source to a specific directory. I can checkout the source using svn on the command line. I tried specifying the Local Module setting under source code management but no dice. I set it to c:\source\trunk and I get this when i run the build. Started by...

How are non-gmail accounts shown in Google Code SVN repositories?

I'm about to migrate a project to Google Code, and for that I'm changing our SVN repository to display the new author names. I know that gmail based Google Code accounts only display the username of the user in the svn:author property. So for a Code account [email protected], the SVN author name would be example. Now I have some projec...

Best way for handling web releases using a staging enviroment?

I've been designing and developing websites for a number of years now, however, whenever I make changes to a website I take the bad approach of making a modification, replacing the orignal on the web server, testing in browser and making more changes as needed. I'm looking for a better way to do this. Alternatively sometimes I'll work on...

Using svn delete in a URL with space character

I' trying to remove a file in a remote repository with a space character. svn delete -m "Deleting file" "https://svn.xyz.edu/applications/workshop/H Y P W 2011_2.pdf" I get the error svn: URL 'https://svn.xyz.edu/applications/workshop/H%2520Y%2520P%2520W%25202011_2.pdf' does not exist How to resolve this problem and delete the file...

svn export and read only folders and files

When I use the svn export command, the folder structure is readonly (both folders and files). Is there a flag to tell it to export without read only flag? Here's the command I am currently using: svn export --force "MySvnCheckoutDir" "PathToMyLocalDir" Any help is appreciated ...

How to solve the svn error "Entry for 'xxx is marked as 'copied' but is not itself scheduled for addition."

When I try to commit a specific file (xxx.java) following error pops up: svn: Entry for 'C:\aaa/bbb/ccc/xxx.java' is marked as 'copied' but is not itself scheduled for addition. Perhaps you're committing a target that is inside an unversioned (or not-yet-versioned) directory? How to solve this SVN-Error? ...

Make a SVN working folder identical to repository version

I basically want to do an SVN export as part of a scripted build process, but without having to get the entire repo from scratch every time, which is slow and eats bandwidth... not to mention will make testing the script a pain in the backside if it does this everytime we tweak something or spot a typo in the scripts. Is there an obviou...

Using git with subversion

Hello, CentOS 5.3 subversion 1.4.2 I have been using git for one of my projects. However, our company policy has changed and now I have to import my git project into our new subversion repository. I am just wondering how I can import a project created in git into a subversion repository? Ater I have imported the project I will have ...

How do I enable automatic email for SVN post-commits for a SVN+SSH repo in the local network?

We have a server whose SVN repos are accessible either via SVN+SSH or SAMBA. I already created: a shell script to send email (it works when executed by itself), a shell script based on the post-commit.tmpl in <repo path>/hooks/ which I named post-commit (executable by all) I even added a touch command within each script just so I can...

How to organize project directories for SVN?

I am new to SVN. How should I organize the project directory structure on my computer (NOT in REPOSITORY)? Should it be the same as in the repository (trunk, tags, branches) or is it usual to use a different structure? Thanks. ...

svn clean slate after branching

I have a web project that I want to version in SVN. SVN is up and running perfectly and I've setup the project repository and got everything imported and branched into a 1.0 version. Work will soon being on a new 2.0 version which will be completely different from the 1.0 version with very little to most likely zero carry-over of any f...

How to write a multi-line property in the auto-props section of the subversion config file?

What is the correct syntax? [auto-props] *.* = svn:ignore=bin obj or [auto-props] *.* = svn:ignore=bin;obj or none? Is it possible to write multi-line properties in the config file? ...

How can i setup my own SVN.

I am new on SVN how can i setup my own setup SVN. kind give me complete solution form start to end ...

Working Copy View in PVCS?

Hello everybody, My company is using presently SVN and testing other tools in order to migrate, if a more convenient tool is found. My question is about PVCS. I just wanted to know if PVCS features a view of the working copy as SVN does? As far as I know, in older versions, one has to work in local, out of the control of PVCS, then c...

CC2SVN - Jar migration problem

I migrate a Clearcase project to a SVN project. My Clearcase project is composed of : Br_Int => Br_Dev => Br_2 and Br_1 I have created a view on Br_int and I have processed the migration with this view. In my SVN project, branches are migrated : Branches => Br_int and Br_Dev and Br_1 and Br_2 But in my ClearCase project I have J...

Tortoise SVN - Merge experience and questions

We use TortoiseSVN on Windows and VisualSVN server. I just completed the merge and reintegration of a feature branch back into trunk. The experience wasn't as smooth as I'd hoped and I have some questions based on my experience. 1) Merging trunk changes into branch. I went through and identified all of the repository revisions that a...

A better release management strategy?

I work for a company that makes a web based tool. As part of my job, I was given the task of release engineering for this product(something I had never done before). I've setup the following system using SVN(Sorry, we can't use another repository before someone suggests switching to GIT or perforce or one of the myriad of other options...

Is this Idea Possible making some kind of SVN c#

Hi there I get alot of help from this website.Thank Long live stack overflow team and contributors. My question is that is Lets say I have a c# desktop app running in client machine on network say at office and that particular application stores data in mdf database file. Backup of that database is placed on Server on that network as m...

How to manage historical externals in SVN

Hi! I have some projects which use a few externals (libraries) that are likely to change overtime. I try and keep the project clean with the trunk/branches/tags pattern, and when I make a tag (or release), I'd like to freeze the entire source in time, that is, the externals as they were at that time. I can think of two ways to do this:...