svn

How to create trunk directory in existing svn repo without a trunk, and move all files to new trunk?

Hi all, I've got an svn repo with no trunk dir. I'd like to create the trunk and branches dirs, and move all my files (currently in the root) into trunk. Creating trunk works just fine: macbook[601] # svn mkdir trunk A trunk macbook[602] # svn commit trunk Adding trunk Committed revision 67. moving everything into ...

Is there an encrypted version control system?

I am looking for an encrypted version control system . Basically I would like to Have all files encrypted locally before sending to the server. The server should never receive any file or data unencrypted. Every other feature should work pretty much the same way as SVN or CVS does today. Can anyone recommend something like this? I ...

Files uploaded on production and needed on staging - using Subversion

We do weekly updates to production server. In the past we've been going to each folder and doing an SVN Update to get latest version of files from the repository. Very tedious. All our development is on the trunk. We'd like to begin (yes, we haven't done this yet) using SVN tags to mark our releases. I believe we could then do an SVN ex...

What does it mean if some files in TortoiseSVN are marked "deleted" and others "deleted (+)" with a plus sign?

I'm about to do a commit in TortoiseSVN involving rearranging a lot of files and directories. On the "commit" window, there are several files whose text status is "deleted" or "added" but others whose text status is "deleted (+)" or "added (+)". What does the (+) mean? (It's quite difficult to Google for a plus sign, and the word "plus...

Guide to SVN for Web Development

Hello, I'm looking for some help in using svn with web development. Here are my questions. I setup SVN on my webserver, but keep my project files on my PC untill I'm ready to "commit" them correct? How do I get the "pushed" files I've sent to the server in my directory such as /home/site/public_html/ .. basically I'd like to "commit ...

Importing Subversion to GIT: problem with subpaths

We currently run a big subversion repository, and I'm trying to move it to GIT. The problem is that it uses trunks and tags below the root directory. For example: MyDepartment\MyOS\Project1\trunk\ <-- master branch MyDepartment\MyOS\Project1\branch\v1 <-- other branch MyDepartment\MyOS\Project1\tags\v1_20100101 ...

Subversion demystified?

Hi, I finally decided to move towards a version control workflow but...it's a month I'm trying to setup a workflow with SVN with no luck. I work with Coda (svn is supported) + Media temple hosting. I just set-up a repo (following MT guide) in /data/svn/myproject and imported my website root. Problem 1: svn imported only half of the ...

How to automatically update android:versionName?

For an improved bugreporting I'd like if the tag android:versionName automatically contains the number of the revision on the svn server. Anyone knows how to do that? Thanks ` ...

build svn revision in hudson

I have configured a build parameter in Hudson for the revision number. I would like to set a default value so that SVN head is built when the revision number is not specified/changed. HEAD does not seem to be working. This is my subversion repository configured in hudson: http://my_svn_location/trunk@${revision} I see the following ...

Cannot open .php from svn repository in Zend Studio 7.2

Zend Studio 7.2 I receive the error "Unsupported content type" (log entry: "Could not open the editor: org.eclipse.jface.text.Document") when trying to open any *.php file in my svn repository. Any other files in svn are opened without problems. Besides I can open all files of the project (including .php) locally via PHP Explorer. All ...

SVN Web Development - Path / OS Differences

Hello, What is the best way to deal with config / directory / OS differences using SVN to develop and deploy on 2 different platforms? I am developing in Windows and deploying to Linux. I'd like to use my home PC to test the files before using commit, I'm using a web framework and you must specify the paths to your system and applicat...

SVN log file and TortoiseSVN

I'm attempting to generate an SVN log file through TortoiseSVN, if that is even possible. I would use the command line svn log --verbose --xml but this won't work since it is a remote repo and I can't define a username/password for it (gets ignored by svn) Is there an equivalent log file generator for TortoiseSVN? Thanks ...

Subversion dump/load overlap/underlap issue

I have a repository I'm migrating to a new subversion server using svnadmin dump and load. I'm doing this in 2 goes, as outlined in the steps below: repoX is at revision 100 I perform an svnadmin dump repoX > repoX.dump I perform an svnadmin create repoX on the new server I perform an svnadmin load repoX < repoX.dump on the new server ...

Can I instruct the jar command to ignore .svn folders ?

My project is synced with svn, While deploying to the client, the .svn folders too get included as a part of the build and the resulting war file size is doubled. is there a way I can specify jar command to ignore .svn folders ? This is how i specify the command : jar cvf ../MyProject.war . ...

Efficiently get a pristine Subversion working copy

In my build system, I delete my working copy and perform a fresh checkout in order to guarantee that the working copy is pristine. By 'pristine' I mean I can be sure there's nothing additional, as well as nothing changed or missing, in the working copy. Is there a more efficient way to do this? ...

svn Error: a versioned directory of the same name already exists.

I am trying to switch my local folder from Branch to Trunk. I get the following error. Failed to add directory 'Drive:\Path\To\The\Directory' a versioned directory of the same name already exists What is the resolution for this? ...

SVN Override remote files absolutely by local files

Hi I am using SVN in Eclipse (Subclipse). It is frustrating to spend two hours to figure out (apparently simple task) how to absolutely commit your local files to repository (with no comparisons, no updates, without accepting any incoming change), and still no success. Can stackoverflowers help me out here? Thanks EDIT Every time I t...

Subversion/Tortoise/.NET: merge not copying in newly added file

Hi all I've created a branch to handle some new developments I don't want impacting on the trunk until they're complete. Initially I simply created a copy of the trunk. I then created working copies of both the trunk and the branch. In the working copy of the trunk, I modified a couple of files and added a new one. I then committed my...

Subversion: Multiple conflicts when merging the differences between two branches into an unmodified working copy

I have a Subversion repository full of WordPress sites. The repository structure looks something like this: /WordPress/tags/2.9.2 /a-wordpress-site.com/trunk /another-wordpress-site.com/trunk ... When I want to create a new site, I simply copy /WordPress/tags/<latest-tag> to /<new-site>/trunk. It's been great! - except that now, for th...

Can Subversion report the percentage of code changed over time?

I would like to know on a line by line basis, what percentage of source code within a subversion repository has been modified between two commits. For example. say revision 2100 has 150,000 lines of code -- but revision 2600 has 165,000 lines of code where 8,000 lines of the original 150,000 code where modified. I would report this as ...