svn

Subversion Revision Numbers

I've never worked with a VCS, so please correct me if I make any fundamental mistakes. For a project of mine, I've chosen to use Subversion, and I've been reading the documentation. If I understand correctly, the revision number is incremented for every check-in. However, this brings up a question. Is it possible to checkin more than o...

Python 2.6 bindings for SVN 1.6.6

I'm trying to install Trac 0.11 on Windows XP with Python 2.6 and VisualSVN server (Subversion 1.6.6) but I can't seem to find working bindings. ...

Svn hook encoding problem

Hey! I created a svn hook that calls a php script to send some emails. The problem is that I am getting incorrect encoded msg's (I think that's what you can call it) This is what I get in my mail: Modified files - /base/view.php Mais umas actualiza?\195?\167?\195?\181es This is what I get when the h...

SVN client integration into Eclipse

I had integrated a Subclipse plugin into the Eclipse to perform SVN related operations. I had successfully checked-in, checked-out and commited my project to the SVN. But now when I am trying to commit or update my project, it is showing the following error org.tigris.subversion.javahl.ClientException: Unsupported working copy format ...

Multiple import into SVN repository

Hi, is there any way how to do multiple imports into SVN repository? I.e. I want to import first file a/b/file1.txt and then file a/b/file2.txt. First import is OK, but second one throws "directory a already exists" error. Is there any way how to accomplish this multiple import? ...

MonoDevelop - Remove SVN Source Control

I have a project which is attached to a SVN provider. I wish to move it to another repository, but when I try to publish to this new location, I am told the project is already bound to another. How do I break the link to that provider? MonoDevelop 2.2 ...

move a file into a tag in svn

I want to move a file into a tag in svn, what is the best way to do this? ...

Using Subversion working directly on the repository

I have been struggling with Subversion for some time, thinking it was beginners problems that would go over. Though today I have been thinking through it, and realize that the problem is the way it is embedded with the client files, and that you work on the server db through these embedded files. So I wonder if: Is it perhaps just a...

Is it possible to turn off keyword substitution for 'svn export'?

I would like to use svn export to export a bunch of files out of a Subversion repository. And I also wish to forgo keyword expansion on any of the keywords found in these files regardless of the svn:keywords property on this file. Is there a way to do this? I'm doing this because I want to compare the files in the repository against a...

What are the benefits of using the Subversion protocol over the file protocol, when talking to a *local* Subversion repository.

I'm planning on doing local-only development, ie all services and resources are local and no remote servers. I'll be using Subversion for source control. Are there any benefits to doing a local install of the SVN server versus referencing the same local repository via a file-based approach (file://...)? (Windows system) ...

SVN Import: "Error: Could not open the requested SVN filesystem"

Hi All! I try to import my old project to new SVN server (svn + web_dav+apache), but however I get some weird error while importing with tortoiseSVN. Adding: C:\tmp\carpirate\test Adding: C:\tmp\carpirate\test\crawlerTestSuite Adding: C:\tmp\carpirate\test\crawlerTestSuite\TestP2p.java Adding: C:\tmp\carpirate\test\crawlerTestSui...

ruby script not being called successfully with svn's post commit hook script

what could be the possible reason that my ruby script is not being called successfully? note that when i manually execute the post-commit script like so: /var/svn/eweds/hooks/post-commit /var/svn/eweds 151 works just fine, the way my ruby sript is called in the post-commit script is like this: ruby /home/pmind/public_html/eweds/scri...

Record a copy or move that has already occurred using Subversion

Mercurial provides a -A, --after option for moves and copies, which records those operations after they've already occurred. How can I achieve this using Subversion? ...

remove resharper files from svn

i just moved a bunch of code into a svn repo and it checked in all of the resharper files and other items that dont need to be in source control. whats is the easiest way to tell svn to ignore certain directories? ...

windows explorer icons in tortoise svn take a long time to refresh to correct state

after i commit files, the icons stay on either modified or waiting for commit for a long time. is there any way to force a refresh to ensure that the icon that i am seeing is the correct state of the file. ...

How can I delete .svn folders from an app when I have no access to repository

I have received a copy of source code that was checked out from an svn repository to which I have no access: there are thus .svn folders and the like all over the place that I would like to remove. I can't use the tips included in the svn docs, since they all seem to involve having access to the repository to which these files and folder...

Relocate directory within repository

I'm still getting my head around the finer points of Subversion. I have a repository structure like so: /trunk /tags /branches and one local working copy that is a checkout of /trunk I would like to move those directories within the repository to /website/trunk /website/tags /website/branches To make way for a number of other pro...

Subversion: Is there anything faster than "svnsync"?

So I have my subversion repository stored on some cloud (for example code.google.com) but due to various reasons I need to make my code non-public. I decided I needed to download the entire repository and migrate to my own svn server. So I went about using: svnsync init DEST SRC svnsync sync DEST And it took about 0.5 seconds for ea...

Subversion: Migrating from cloud SVN repo to local SVN repo... lost history?

I created my own SVN repo locally. Then used: svnsync init DEST SRC svnsync sync DEST svnsync checkout DEST The checkout worked successfully and I got all the files from the original SVN repo and that is definitely a good thing! But when I did: svn log All I get is the message: svn: Item is not readable Does the file not have a...

"Naive" svn merge from branch into trunk?

Hi, I am using TortoiseSVN for my C++ project, and am trying to "reintegrate a branch" back into the trunk. My case is simple enough so that for every file which has changed in the branch, I would like it to completely overwrite the matchinf file in the trunk. Unfortunately, TortoiseSVN is smarter than me, so it merges each pair of fil...