svn

How to Use SVN in XP with FTP?

I am the new to SVN using FTP server. Anyone can give idea for using svn in FTP in Windows XP? ...

Notify user if file is used by other user in windows

Hi , I am working in a project where all developers are working in a single windows system through remote sessions(remote desktop).Where we all have to share a common workspace folder..We have an issue, some times multiple user may work in same file at the same time..So when both user do some changes in the file..Only the data saved by ...

How would you plan for merging multiple branches?

I've recently joined a team with a code base which hasn't been under version control. The code has been forked several times by different people in the organisation working on different projects. Now we're going to start using version control and we want to merge the valuable contributions from the different projects. The projects share ...

SVN ignore large files

Hi, I'm trying to get svn to ignore got large datafiles in a directory. Since all the files in the directory share the same extention, specifying a pattern in svn:ignore doesn't do. Is there a way to say "ignore files larger than N MiB"? ...

Set svn:ignore property on anything in a particular folder (but not the folder itself)

Hi all. I have this folder public/assets/dvd_files/dvds/ and i want to svn ignore anything that might appear in it. I thought that this would work: svn propset svn:ignore * public/assets/dvd_files/dvds/ but i get this error message back: svn: Cannot set 'svn:ignore' on a file ('Capfile') Can anyone set me straight as to what ...

How do I configure proxy settings for TeamCity?

We have a TeamCity server sitting behind a cooperate proxy. We use several of the Castle open source libraries. I want to set up CI builds for the Castle stack internally, so that I can create dependent builds for our core shared libs. Everything was going well, until I tried to find proxy settings for TeamCity. Google-ing around has tur...

relink `libsvn_subr-1.la' with the above command before installing it

I am trying to build subversion on RHEL, make completed without any error for configure options provided were ./configure --prefix=/usr --without-berkley-db --LDFLAGS="-L/usr/lib64" but ./make install gives error ./make install Running make install-lib /usr/bin/install -c -d /usr/lib cd subversion/libsvn_subr ; /bin/s...

"git svn fetch" :: RA layer request failed

git svn fetch ended with "RA layer request failed" how can i resume the fetch ? ...

Pre-commit hooks in C# with SharpSVN

Hello Everyone, I'm new to SharpSVN (and frankly--pretty new to C# as well). I've been trying get a simple pre-commit hook working which checks for a comment. (i.e. the commit fails in the absence of a comment) There are several posts (like this one) which are related and helpful, but I have a few fundamental questions that are keepi...

Subversion on Windows Server 2008

(I'm Subversion noob) and we are planning to set up a single Subversion repository into a Windows Server 2008 (Terminal Server). We're have many client computers under the same domain. How to access this single repository? Should we install TortoiseSVN to these client computers? Can TortoiseSVN access easily this single repository (locat...

SVN for the custom parts of a complex Wordpress/bbPress installation: what do you think of this approach?

I have a fairly complex WordPress + bbPress installation and I would like to handle version control for all the custom code in subversion. What follows is the approach I have settled on and I would appreciate input/critique. Is there a better way to do this? Although my situation involves WordPress I am describing things in general term...

SVN messes with my files with jibberish data, why?

Sometimes, I find myself in a situation where valid files are made invalid by doubling the contents, placing ======= in the middle, <<<<<<< .mine at the beginning and <<<<<<< .r1276 at the end. This results in unbuildable projects: <<<<<<< .mine using System; using System.Data; namespace MyNamespace { class Xyz //... a lot mo...

How does Eclipse determine which projects to load for a particular workspace?

Does anyone know how Eclipse determines which projects are in a particular workspace? Is there a config file somewhere with this info? I have struggled (in vain) for several hours trying to figure this out. I'd like to be able to edit this config / check it into SVN... ...

SVN best practice - Deleting completed branches

Once you have finished/reintegrated a branch, is it best practice to delete the branch so your head branches folder only shows current branches? If so, what would be a suitable time to delete reintegrated branches? After a minor release (which is when we tag). Cheers ...

Error committing Trunk after merging Branch back in. How to resolve?

I'm getting the following subversion error: Subversion does not allow to commit this combination of files and directories at once. Directory deletes must be recursive and this would commit other files: Deleted directory: D:\mm32.net\Trunk\MyApp.Web\App_Themes\Factsheet_print\Images\Risk Directory to commit: D:\mm32.net\Trun...

Getting directory listing from SVN for use in ANT dropdown

Hi ANT experts :-) I've done some Googling on this but I can't seem to find anything along the lines of what I'm needing. I'm using ANTForms for the GUI on our deployment. Developers can choose the build from the dynamically populated dropdown, hit ok and away it goes. The way the dropdown is dynamically populated at the moment is by...

Is there any way to run svn log on an entire repository (not just a checkout of trunk) without having to check it out?

I've got a Subversion repository that our Atlassian Fisheye instances nearly chokes on because of some accidental commits + backouts ( i.e., someone tagged the entire repository instead of just /trunk, and on more than one occasion). So what I want to do is audit the repo for larger-than-average commits, and carry out a dump+load to remo...

Collabnet Subversion upgrade path from version 1.6.2 - using FSFS format

We use Collabnet Subversion and are on version 1.6.2, with FSFS format repository. On Windows 2003 server. Can I upgrade to Subversion Edge and still keep my existing FSFS repositories? I'm hoping that the answer is an "obvious yes", but I can't find that answer anywhere. Thanks. P.S. I asked this in serverfault, as it is not really a...

Problem cloning a single SVN Branch via git svn

I have tried the following command on my SVN Repository to clone only a single branch via git. git svn clone http://svn.supose.org/supose/branches/B_0.7.1 but got the the following error message: Initialized empty Git repository in /Users/km/workspace-supose/git/B_0.7.1/.git/ W: Ignoring error from SVN, path probably does not exist:...

How to merge branch back to trunk in SVN with all commit history?

How to merge branch back to trunk in SVN with all commit history? I know in Git I can use merge -squash. Is there any equivalent command in SVN? I am using SVN 1.6. ...