svn

How do I list and fetch remote branches after SVN to Git migration?

I migrated our SVN repository to Git and pushed it to a central repository. We had a fair amount of tags and branches, but somehow we were not able to list and fetch those from a Git client. This was weird, because the tags and branches seemed to be available on the server. With help from a Jon Maddox blog post, a blog post from Marc...

Git SVN rebase to tags only

Hi, I'm extending an open source project with additional functionality. So I'll be basing my code on the released version of the source code. The open source project uses SVN and I uses Git. How would I rebase only to the released version (SVN tags) instead of to the HEAD of trunk when a new version is released? Thanks. ...

Problems with IntelliJ integration after switching SVN servers

We moved to another SVN server, and now my IntelliJ-SVN integration doesn't work. Whenever I open the project, I get this: What is this "content roots"? I searched all over the project dir and didn't find it. ...

what is tool like TortoiseSVN(Windows) on ubuntu?

what is tool like TortoiseSVN on ubuntu? please help me. ...

Get permission for an SVN folder using SharpSVN

I have have a repository, for example "http://svnserver/repository". Users have different permissions in the folders: "http://svnserver/repository/folder1" or "http://svnserver/folder2". How can I get the permission (read only or read and write) of the user logged in for a specific folder? ...

Single user checkout in SVN

I want to do the following: When one user is editing a file from SVN, no other user can edit this file until the first user commits his changes. That is there would be some kind of writelock on files in svn. Is this possible in SVN? How to do it? Is it possible to set this for a single file or directory (not for the whole r...

Define an Automate Build process for a Windows Application which is using SVN as a Source Control

Hi, I need some help from you guys. Let me explain you what we were doing, first: We were working on a Windows Application and all of us are integrated with Team Foundation Server. We are done with all application features so now what we are working on is the list of defects that are reported from QA. QA list all their issues on Mercu...

How to find the common ancestor of two branches in SVN?

Imagine you've got a big SVN tree with branches all over the place. There is the trunk, there are branches, those branches have branches, etc. So, given two branches in the tree, how can you find the common ancestor? I know that you could simply take the full log and compare it, but it get's kinda slow if your trunk has 75,000 revisions...

Virtual copies of files in SVN?

Hello all, I'm guesing if its possible to have virtual copies of my code with SVN. For example: imagine that I have two programs in my repository. Program A use a subset of files used by B. My question is if I could update a copy of a file in the context of program A, then commit in SVN and next time I update my code, I have the same c...

How to avoid tree conflicts when merging branches that were moved?

I have a repository that looks like this: /a/trunk/Library /a/branches/FeatureX/Library /b/trunk/Application /b/branches/FeatureX/Application I want to rearrange this so that I have the Application and Library folders next to each other: /a/trunk/Library /a/trunk/Application /a/branches/FeatureX/Library /a/branches/FeatureX/Applicati...

version control with minimum hassle

I'm looking for a program, that is capable to monitor file deletions/creation/renames and issues appropriate version control commands automatically. Using bazaar and subversion. Is there any? ...

SVN in ASP.NET with Ankh basics for day-to-day usage

My team now has an SVN + Ankh setup in ASP.NET with trunk, branches, and tags. We switch branches and work on code, but many times there will be inexplicable conflicts in files after simple changes. Why is this? I suspect we simply don't understand enough of how this works. Are there any do's and don'ts, or how should we be approaching o...

Accidentally committed the .svn directory.

I accidentally committed a folder named .svn to a Subversion repository. Now when I try to check out or update I get this error message: svn: Failed to add directory 'oops/conferences/.svn': an unversioned directory of the same name already exists I removed the directory in the next commit, but that didn't help. Any ideas? ...

Localizable.strings woes

My Localizable.strings file has somehow been corrupted and I don't know how to restore it. If I open it as a Plain Text File it starts with weird characters that I can't copy here. If I leave the file be the app builds. If I make any changes either the values aren't interpreted properly or I get an error at compile time. Localizable.s...

Need advise organizing an SVN repository

I've been working on a one-person project for a while and I'm using an online-hosted SVN repository as source control. Now, we are hiring a few offshore developers to help me on the project. My concern is - I don't want them to start checking code in to my repository at least while they are learning. I'd rather have them check it in to s...

Export Entire Git Repo to SVN including Branches

Long story short, I have a git repo with several branches, and I would like to move it to an SVN repo while maintaining all of the branches and commit history. So far I have not had much luck, most of the methods I have found do not migrate the branches as I would expect. (they are combined, or ignored, or eaten by a grue) I was plann...

Moving my SVN local file repo to GitHub

I have a local file SVN repo of a project that needs to move to GitHub. I know from what I've read on the GitHub site and a related question here on stack-overflow that it's a simple matter to move the repo from an SVN server into the GitHub repo. But my problem is that I have a local file repository. What is the recommended way of ...

Is setting the SUID/SGID bit on the SVN binary a security risk?

I would like to use a callback feature of an SVN repository (Unfuddle) to ping a URL on my server whenever a commit has been made. I have a PHP script accepting the message and attempting to call a shell script to execute an 'svn update'. The problem I'm facing is that Apache is running under user 'www-data' and does not have access to ...

how to access svn repository in xcode from another machine

I have installed svn in my mac mini and managed to configure it for xcode. I have also configured svnserve from these instructions - http://www.mindfiresolutions.com/configure-svnserve.htm Now I need to access the repository from my macbook. I tried configuring the repository in SCM menu in xcode . In url, I have put- svn://192.168.1.2/...

How to apply the svn 'eol-style' property recursively only on text files?

I need to apply the eol-style property recursively on an existing repository. The repository contains both text files and binaries. I want to apply this property only on the text files, and not on the binary files. How can this be done from the command line or in a script? ...