Re: Parmently removing directory from server to make space

2013-04-03 Thread Thorsten Schöning
Guten Tag Anil Bakshi, am Donnerstag, 4. April 2013 um 07:57 schrieben Sie: > For example, my root directory is /E_Learning/Development/ > I need to know the folder structure inside Development folder. > I cannot check it through tortoiseSVN because I have deleted few folders > from their and I

RE: Parmently removing directory from server to make space

2013-04-03 Thread Anil Bakshi
Hi Olli, Thnaks for your support. I ran into one small issue. I need to know the folder structure of my dump file. Is their any command to know that. For example, my root directory is /E_Learning/Development/ I need to know the folder structure inside Development folder. I cannot check it thr

Re: SVN wc/repo issue...

2013-04-03 Thread BRM
Thanks. I didn't think any server-side locks were involved, but didn't know if a commit earlier on may have done something on the server-side. I did get around it by using the "svn mv" command to do a server-to-server move - kind of like doing it in TSVN's Repository Browser; and that worked jus

Re: SVN wc/repo issue...

2013-04-03 Thread Thorsten Schöning
Guten Tag BRM, am Mittwoch, 3. April 2013 um 21:36 schrieben Sie: > Is there any way to tell what might be locked on the server side? The problem is not related to any server locks within the svn repo, but only with your local filesystem and/or your working copy. SVN-Locks a re only recognized d

Re: SVN wc/repo issue...

2013-04-03 Thread Philip Martin
BRM writes: > $ svn mv ../../include . > > However, 'svn mv' keeps returning: > >     Unable to lock '.' > Is there any way to tell what might be locked on the server side? The error does not involve a server-side lock. > We're using Apache2/2.2.22 + Subversion 1.6.17 as the server (Ubuntu > R

Re: Graphical version tree

2013-04-03 Thread Geoff Hoffman
What platform? On Wed, Apr 3, 2013 at 11:52 AM, Olivier Antoine wrote: > Hi, > > I'm beginning with Subversion, > > I'd like to know if there is a tool that could display a graphical > representation of the version tree of a file? > > Regards, > Olivier > -- Connect with us on twitter

Re: Graphical version tree

2013-04-03 Thread Thorsten Schöning
Guten Tag Olivier Antoine, am Mittwoch, 3. April 2013 um 20:52 schrieben Sie: > I'd like to know if there is a tool that could display a graphical > representation of the version tree of a file? Search for "subversion revision graph" and pick the tool you like the most. There are really a lot of

SVN wc/repo issue...

2013-04-03 Thread BRM
I have a repository with many projects in it, and have been working on the layout of one project in particular - adding directories and moving source into it. I am now trying to move a directory in that projects part of the tree to another part of the tree, simply: $ svn mv ../../include . How

Graphical version tree

2013-04-03 Thread Olivier Antoine
Hi, I'm beginning with Subversion, I'd like to know if there is a tool that could display a graphical representation of the version tree of a file? Regards, Olivier

Re: subversion on OpenIndiana...

2013-04-03 Thread Daniel Shahaf
CRAM-MD5 supported on both ends? John Doe wrote on Wed, Apr 03, 2013 at 04:59:51 -0700: > Hi, > > any OpenIndiana subversion user here? > I am trying to checkout a subversion repo but I get: >   $ svn co svn://server/... >   svn: Cannot negotiate authentication mechanism > The server, on Linux, u

Re: Can't svnsync due to pre-revprop-change hook

2013-04-03 Thread Richard Cavell
Good work, thanks. Needless to say, I really hope I don't screw up the book repository and if I do, just block or revert me as necessary until I learn what I've done wrong. Richard - Original Message - From: C. Michael Pilato Sent: 04/04/13 12:11 AM To: Richard Cavell Subject: Re: Can't

Re: Can't svnsync due to pre-revprop-change hook

2013-04-03 Thread C. Michael Pilato
On 04/03/2013 09:58 AM, Richard Cavell wrote: > Thanks for the reply. I still have some sort of permission problem. I've > removed my actual passwords from this transcript. Sorry for my lack of > Unix-fu. > > Richards-MacBook-Pro:~ richard$ svnsync initialize > https://svnbook.googlecode.com/sv

Re: Can't svnsync due to pre-revprop-change hook

2013-04-03 Thread Richard Cavell
Thanks for the reply. I still have some sort of permission problem. I've removed my actual passwords from this transcript. Sorry for my lack of Unix-fu. Richards-MacBook-Pro:~ richard$ svnsync initialize https://svnbook.googlecode.com/svn/ file:///Users/richard/repo --sync-username richard --sy

Re: Splitting out project from repo

2013-04-03 Thread Bryon Winger
> You probably still want the svndumpfilter processing to drop empty > revisions before loading it in a new repository. > I believe that the current version of svndumpfilter only operates on version 2 dump streams - which svnadmin dump produces. svnrdump produces a version 3 dump stream

Re: Can't svnsync due to pre-revprop-change hook

2013-04-03 Thread Thorsten Schöning
Guten Tag Richard Cavell, am Mittwoch, 3. April 2013 um 13:32 schrieben Sie: > Richards-MacBook-Pro:hooks richard$ cat pre-revprop-change The file needs execute permissions, check those. Mit freundlichen Grüßen, Thorsten Schöning -- Thorsten Schöning E-Mail:thorsten.schoen...@am-soft.de

subversion on OpenIndiana...

2013-04-03 Thread John Doe
Hi, any OpenIndiana subversion user here? I am trying to checkout a subversion repo but I get:   $ svn co svn://server/...   svn: Cannot negotiate authentication mechanism The server, on Linux, uses sasl. In Openindiana, I did install: SFEcyrus-sasl Do I need to configure/install something extra?

Can't svnsync due to pre-revprop-change hook

2013-04-03 Thread Richard Cavell
Hi everyone. I'm trying to svnsync the svnbook's repository with a repo on my own machine, just so I can practice administering an svn repo. What am I doing wrong here? I figure I'll paste the transcript from bash and that will explain everything. Richards-MacBook-Pro:~ richar

RE: Splitting out project from repo

2013-04-03 Thread Bert Huijben
Hi, The ‘svnrdump’ tool that was added in Subversion 1.7 might do exactly what you to do. This tool allows creating a dumpfile from a url (E.g. file:///path/to/repos ) and should skip unrelated paths for you during the repository processing. You probably still want t