svn

Seed a new SVN repository with a revision number

I am thinking about creating a new repository in SVN for a section of our main project. I would like to respect the revision number we have got to, though. So my question is: Is it possible, when creating a new SVN repository to "seed" the revision number to, say 1100? Thanks :) ...

How do I store in subversion my customizations to a public open source project?

Hi, I'm working on customizing a couple of open source projects in ways that are very much personalized -- i.e., not appropriate to send the patches back to the maintainers for the public. One of them is stored in CVS, one in SVN. I use SVN for my own work. The CVS project is fine. I check the tree in to my svn repository, including ...

How to exclude tags folder from triggering build in Teamcity?

Hello, I recently installed Teamcity 5.0.3. I am trying to setup automated build for a .NET 2.0 VS2005 project. I use NAnt and MSBuild task to perform the build. The project structure is a typical SVN structure svn://localhost/ITools is my repository and the project structure is VisualTrack trunk branches tags I created a new ...

How to remove a file from SVN synchronization?

Working with Eclipse and SVN, how do I definitely remove a file from list to never synchronize it? ...

SVN Version Rollback Question

Hello, I'm using SVN (TortoiseSVN) and often came into the following situation: I wanted to discard any changes since a specific (old) revision and turn all files back to this specific (old) version. Then I wanted to work further as if this specific (old) revision was the newest one, i.e. I wanted to be able to commit the specific old ...

Unable to merge new file from trunk to my branch

Here are my steps: switch from trunk to my branch perform a merge from a trunks subdirectory to my branch subdirectory, i.e. svn merge https:.../trunk/Class@2209 https:...branches/mybranch/Class@HEAD /Users/me/.../Class The response I get: --- Merging differences between repository URLs into '/Users/me/.../Class': C /Users/me/.../...

Using branched svn repository in Eclipse without Subversive/Subclipse

How can I use a new branch in Eclipse if I'm not using Subversive or Subclipse? Do I have to checkout the new branch and import that as a new project into Eclipse? Is there an easier way to do it, or is using Subversive or Subclipse the only reasonable way? I know there are many discussions on the pros/cons of Subversive or Subclipse ...

DotNetNuke and Subversion guidelines

I've Googled, Binged, and here at StackOverflow, looked through the related questions and searched, but I'm not finding what I'm looking for. I've also searched documentation on DNN. What I'm looking for is any guidance (tutorials, blogs, step-by-step instructions for setting up a repository) etc from people who are experienced in usin...

502 Bad Gateway with nginx + apache + subversion + ssl (SVN COPY)

I'm having a problem running Apache + Subversion with SSL behind an Nginx proxy and I'm hoping someone might have the answer. I've scoured google for hours looking for the answer to my problem and can't seem to figure it out. What I'm seeing are "502 (Bad Gateway)" errors when trying to MOVE or COPY using subversion; however, checkouts a...

Where to put SVN repository directory in Linux?

I am setting up a new SVN server on Ubuntu Linux. Where is a good place (best practice) to put the repositories? Should I create a new user? The server will be accessed via http:// so no need to create user accounts etc (as was the case for svn://). Many thanks in advance ...

SVN: Prevent a newer client from upgrading a working copy's SVN version?

Is it possible to prevent a newer SVN client (say 1.6) from automatically upgrading a working copy that was checked out with an older client (say 1.4 or 1.5)? I find that as soon as I touch a working copy with a newer client, anyone using an older client to work with the same files can no longer do so (for obvious reasons). Assuming re...

Add comment to subversion commit automatically

I've already got my subversion repository set up to require comments of a minimum length to accept a commit. However, I'd like to start tagging those comments with information from our bug tracking system when committed. I've already got the scripts set up to pull data from the bug tracker and just need a way to get that info into the su...

Can I specify the files to commit in subversion in a file rather than on the command line?

I have renamed (with svn move) a lot of files in a subversion project. Now, I am trying to commit these on Window's cmd.exe. It seems that I hit a limit (probably by cmd.exe) in that the number of files is too long for the command line to swallow. Now, I thought and hoped that I could list the files to commit in a seperate file that I c...

Subversion: Adding files to the project

Hi I am using library xyz where the files exists in folder xyz, and I want to update the files (eg. a upgrade to a new version), can I just copy the new xyz folder into my project using the file browser? The folder has both files and directories. /Subversion noob ...

Eclipse, JAR Export is packaging svn files

How can I stop this from happening, it is grabbing files in .svn folders when I create jars. The .svn folder is unchecked in the prompt. ...

TortoiseSVN commit shortcut

I find it tedious when everytime I need to commit a file.The process goto windows explorer window, right click directory, then click 'Commit'... and then the tortoisesvn commit window. Anyone know of any shortcut to do this? Maybe press a keyboard shortcut to commit instead of having to right click directory then click commit? Thank yo...

How to rename Java packages without breaking Subversion history?

Hello everyone, The company I'm working for is starting up and they changed their name in the process. So we still use the package name com.oldname because we are afraid of breaking the file change history, or the ancestry links between versions, or whatever we could break (I don't think I use the right terms, but you get the concept). ...

SVN post-commit hook doesn't open up GUI

Hi, I've created a form application in .NET which will be used in the post-commit hook. the problem is that the UI of the application is not shown. What may be the problem? Thanks. EDIT my UI should show Issue numbers of the developer. from there he should choose the Issue number that will be inserted to the log message. I've comple...

Are Subversion repositories binary compatible (cross-platform)?

My Subversion repository currently is installed on a dual boot system with Windows and Ubuntu Linux installed. Is it possible to use the same repository with both operating systems, so if I work with Ubuntu I can launch the svn service and access the same repository which I used with Windows? for example the repository files will be a...

Are subversion conflicts in project.pbxproj normal?

If I add files to my project, and my co-worker adds files to his project, and we both check our files in, should we expect to have conflicts? What's the best way to handle this? ...