svn

How to build a specific revision of SVN in Hudson

Hi folks: Background: We use NAnt as our building tool. Question: How can I tell Hudson to build a specific revision in SVN, instead of the latest one by default? Thanks. ...

Revert a svn folder to a previous revision

To revert a particular folder in SVN to its previous state I currently use the following: svn rm folder svn commit -m 'removed folder to revert to previous version' svn co http://pathto/repo/folder@268 cd folder rm -rf .svn //recursively if many folders svn add folder svn commit -am 'reverted to the previous version' Seems too much tr...

Subversion Release Manager Plug-in

Has anyone ever tried this plug-in? http://wiki.hudson-ci.org/display/HUDSON/Subversion+Release+Manager I don't see the releases link shown in the page after installing the plug-in. Thanks. ...

SVN "Share project was failed"

Hi, I get this error : Share project was failed. svn: Error writing entries file for 'C:\workspace2\Test' svn: Entry '' has inconsistent repository root and url But we get this error only on a particular PC. Also if we move the workspace in a network drive, everything works fine. We are using FDT(eclipse based IDE). ...

Strange svn checkout error

Has anyone had this unusual(recurring) experience before? I'm trying to check out the project from svn repository and I get this error : Checkout error; The file or directory is corrupted and unreadable. svn: Can't move 'C:\workspace\project.1267011912396.svn\tmp\entries' to 'C:\workspace\project.1267011912396.svn\entries...

Working with git-svn: Proper workfllow

I created a topic branch from the master; made some commits. Then checked out the master; rebased it on the svn and merged the topic branch. There were no commits on the master itself, so the merge was fast-forward. Now, when I try to svn dcommit it gives me merge conflicts! wtf? Clearly there is a linear history on the master. The w...

Need advice or pointers on Release Management Strategies

I look after an internal web based (Java, JSP, Mediasurface, etc.) system that is in constant use (24/5). Users raise tickets for enhancements, bug fixes and other business changes. These issues are signed off individually and assigned to one of three or four developers. Once the issue is complete it is built and the code only commit...

git svn windows linux whitespace problems

Yea, right. I use git (with git-svn) on linux and a colleague uses svn on windows. So many times, git reports whitespace issues. In fact it fails to commit a linear history because of these problems and creates merge conflicts. What is the simplest way to configure svn/git and git-svn on windows and linux so that there are now whitesp...

Question on development process for artwork

We are currently using SVN, and we are storing much of the artwork (sounds, images) in our repository right along with everything else. Right now, the artists commit their work to the repository directly. When the artwork is approved, it is linked to the codebase. We want to keep the checkout process simple (so that artwork doesn't have...

Restructuring SVN when you already have branches/tags

I have a project with a structure like this: project code art config Art is over 1Gb and likely to cause pains when switching branches, plus developers don't need it anyway. So I want to move it out into a separate top-level project, project-art. That's fine in trunk, but I already have some branches being actively worked on... ...

Maintaining two versions of the same framework and application

We have a framework created in .NET which controls hardware devices. The entire framework uses MEF so it relies heavily on interfaces. For reasons beyond our control we had to change the hardware and that required some breaking changes to some of the interfaces. The project for the old hardware was put on hold for a while and we starte...

How can I store the new SVN revision number in my source code after I commit? (TortoiseSVN)

Is it possible, via TortoiseSVN, to know the SVN rev number you are about to get prior to a commit so that I can put that rev# into the source code comment section? Perhaps there is a special keyname/variable that I can put into my file that TortoiseSVN will automatically replace with the rev# it's about to commit to? The motivation be...

Xcode can not get source files from SVN repo

HI, I have set up a SVN repository in an external machine via command line and using mac os x and works great. Now I want Xcode (snow leopard) to get the source fron the repo, but I get a lots of errors, and have no clue what is going on. Could you point me to some godo tutorial or link for this? I googled but found nothing good. Th...

Merging trunk to branch

This is the first time trying to merge the latest in the trunk Head to my branch. I just want to get any latest updates from other developers on my team into my branch. I am using Subversion 1.6.7. So in the Merge dialog I selected the option "Merge 2 different trees". My question is this: My branch's latest revision is 358 and the ...

Build automation for Delphi + Oracle

Hi all, at my work we are presently looking for a automated build tool. We have googled quite a bit, but there are so many possibilities we are not sure which tool is the best option, to be honest. We are not even sure there is one that fits our needs. It should have as many as possible from following features: Integration with Subv...

svn : how to create a branch from certain revision of trunk

Hi, Following action only creat branch from head revision of the trunk.How to create branch from a specified revision? Thanks. $ svn copy http://svn.example.com/repos/calc/trunk \ http://svn.example.com/repos/calc/branches/my-calc-branch \ -m "Creating a private branch of /calc/trunk." ...

SVN: "tree conflict already exists", but there were none before I tried merging

I get this error message from SVN: svn: Attempt to add tree conflict that already exists Now, this has already been asked on this site and the given explanation is that a tree conflict has not been resolved after a previous merge, and now SVN is trying to add the same tree conflict again. So I called "svn status" and marked all tr...

How exactly does subversion store files in the repository?

I read the subversion book and it is clear to me that subversion does not store individual files but only deltas in order to minimize disk space. Subversion also does the same with binary files as well (this used to be a huge weakness of CVS). However I do not understand the exact mechanism. When I commit a file what happens? Subversi...

How to transfer a Subversion repository from localhost to Github?

I have a working svn of my own project in my local machine. I have created a account in Github. Now I want to transfer this svn to Github with all commit logs and history. ...

Encrypted Subversion repository

Do you know of a reliable way to encrypt an entire Subversion repository? I host the repository on my dedicated server (FreeBSD), but would like to add encryption so my source code cannot be stolen in readable format if someone hacks into my server. I prefer a server side solution as different SVN clients may be used. Possible? ...