svn

subversion co command against https problems

when I carry out the following command: svn co https://192.168.10.130/svn/project I get a prompt asking me for 'Administrator' password. When I type in a password, it asks me for a username and password. What I don't understand is, I guess the 2nd stage is the user set-up in visualsvn, but what is the password for administrator? Is it...

Value in 'svnadmin verify' cron job? (or is ''svnadmin hotcopy' enough)

Assuming a nightly 'svnadmin hotcopy' is run and validated, is there any value in periodically running one or both of?: svnadmin verify REPO-PATHNAME 2>&1 |egrep -v '^\* Verified revision [0-9]+\.' svnadmin dump -q --deltas REPO-PATHNAME >/dev/null (Any output from above is probably abnormal.) Does a successful 'svnadmin hotcopy' in...

Using TortoiseSVN adding 3Gb of file to Subversion and got error 413 Request Entity too large

Hi, Does anyone have a solution for the following error? We can not add a large file to Subversion. We are using Apache 2.2.16 and svnclient-win32-1.6.6 for Windows. Any information is greatly appreciated. ...

Could not open the requested SVN filesystem

I just follow instruction from http://serk01.wordpress.com/2008/09/21/how-to-create-your-own-home-svn-repository-with-xamppapache/ about creating svn repo with xampp/apache. Everything runs well except when I access http://localhost/svn it show error message. When I view source, this is the error: <?xml version="1.0" encoding="utf-8"?>...

googlecode : how to not publish public ?

Hello experts, I am looking for a free SVN hosting. GoogleCode seems perfect. Trouble is I have some projects I cannot make open source : is it possible to use the SVN hosting on googleCode and not share them publicaly ? If not, does someone know an alternative for SVN hosting that does not make it public ? regards ...

Subversion rearrange repository

I have acquired a subversion repository. The problem with it is that everything is in the root (apparently nothing fancy like branching was ever done). Now I want to reconfigure it to follow standard convention: /svnpath/repo /trunk /branches /tags How do I do it and still keep the old history? ...

SharpSVN diff example for C#

Hi there, Can anyone please provide a small example using diff? I'm trying to use Diff(SvnTarget source, SvnRevisionRange range, Stream result), but I can't find the way to actually see the differences. Thanks, Noa ...

Can TortoiseSVN (or SVN) do batch diff like Mercurial?

I use Mercurial and TortoiseSVN, and with Mercurial, I can use hg vdiff and then kdiff3 will come out saying there are 5 files that got modified in the project tree, and then I can go to menu bar to "Expand Directories" and see the files that have diffs, and click on each of them. To my surprise, TortoiseSVN doesn't seem to have this...

How do I branch using SVN on CodePlex?

Unless I am missing something very obvious, I don't see how I can branch on CodePlex using SVN. I'm looking at the popular projects and can't see anything about a trunk or branches. What am I missing? Also, I'm using TortoiseSVN. ...

Can we finally move to DVCS in Corporate Software? Is SVN still a 'must have' for development?

Git/Mercurial have been becoming more and more popular. I have seen plenty of articles comparing SVN with Git/Mercurial, but I am wondering if there is really any reason to still use SVN. It seems like there are plenty of tools for Git/Mercurial now which should help spread its corporate adoption. Are there any reasons to still use SVN...

VisualSVN - merging revisions into one

Hi! We have some server with VisualSVN free service. Because we want to make some space on it, I determined to merge some old projects' revisions. They are not used anymore (the old revs.). To test this I created a local visualsvn server on Win7 machine. I created a repository project named "test", and some python tool that call the sv...

ClearCase for source code control?

Hi, I have never used ClearCase, but have used Subversion and for a short period of time Perforce. The IT department in our company officially supports ClearCase and some people have their code checked in it and some people sort of use it as a back up storage. I am still undecided on weather to use ClearCase itself or setup my own repo...

My subversion is Roach Motel

I can checkout but I can't checkin The error is svn: Can't open file '/Users/Shared/svn/test/db/txn-current-lock': Permission denied What can I do to fix this ...

How to get information from SVN repository?

Hi, We are using SVN for version controlling for out web app. I want to know details like total number of check-in, check-ins by particular user. Is there any tool which can help me to do so? tia, kaps ...

SVN 405 Method Not Allowed

I accidentally deleted a folder in SVN and added it back immediately afterward. I ran into an issue with this and my solution ended up removing the folder completely from my local copy as well as the server copy. I can do updates and commits without problems on any other file or folder, but if I try to create a folder with the same name,...

SVN URL non-existent in that revision Error

Im getting an Error that is in my Tourtouse SVN Repository... The Error is "URL non-existent in revision" I just reformatted my computer that contained all the source code. On that machine is another harddrive that contains all my source code. I didn't reformat that hard drive. Now When I try to connect to that repository from ano...

How decently track the database structure modification by SVN?

The main problem is the versioning of the database structure. The standard mysqldump and pg_dump utilities do not produce very well suited files for versioning. The dump commands produces the dump files with autoincrement values, TOC entries and so on. Since these objects is subject to continuous changes it always produces the huge di...

Can a file be recovered after svn delete?

I am trying to figure out if we need to reduce the number of developers having svn admin rights. 1 - If a subversion user accidentally deletes and commits the delete of a file or folder, how can the file be recovered? 2 - If the subversion user has svn admin rights, does svn delete executed on the client behave differently (more perma...

How to compare local copy of file with latest one in Subversion using Tortoisesvn?

How to compare local copy of a file with latest one in Subversion using Tortoisesvn? I have all my files committed but there seems to be a difference somewhere and I am trying to find it. ...

Invoke the SVN library the installed version of TortoiseSVN uses programmatically

I am writing a utility that automates some SVN processes. All of the machines that this utility will be deployed to have TortoiseSVN installed - however, they might not be the same versions. I understand that TortoiseSVN is statically linked to a specific version of a SVN library, and that this is upgraded often. What I want to avoid is...