Re: Encrypted repo contents

2010-10-18 Thread Bogdan Cristea
On Monday 18 October 2010 14:42:43 Ryan Schmidt wrote:
> On Oct 18, 2010, at 05:58, Gary wrote:
> > I want to create a repo using online storage (think Wuala or something
> > similar), and am pretty keen that nobody else, including the people
> > running the storage service, can get at my code. Is it possible to
> > ensure the repo contents are encrypted somehow? Everything I've read on
> > the subject seems to allow encrypting the connection from clients to
> > server, but not the repo contents as they sit on the disc.
> 
> There is nothing in Subversion to encrypt the contents of the repository.

You could try with a precommit hook


Re: Use of kdiff3

2010-11-08 Thread Bogdan Cristea
On Monday 08 November 2010 13:52:27 Giulio Troccoli wrote:
> Lots of people here use either TortoiseMerge or WinMerge for conflict
> resolution. But now I have a requirement to provide something similar for
> a Linux platform and I thought of kdiff3.
> 
> I there anyone else that uses as well? I have install it but I would like
> some advice on how to call it. I know it can take two or three files, but
> I'm not sure why (i.e. what's the difference) and which files to "feed" it
> with and in what order.
> 
> Thanks
> Giulio
> 
> 
> 
> Linedata Limited
> Registered Office: 85 Gracechurch St., London, EC3V 0AA
> Registered in England and Wales No 3475006 VAT Reg No 710 3140 03

Eclipse has a plugin subclipse with a nice file compare tool. Otherwise, I 
personally choose to use 'svn diff' from command line.


Re: subversion checkout accidently to C:\ drive - how undue?

2011-01-13 Thread Bogdan Cristea
On Thursday, January 13, 2011 03:46:06 pm dba2010 wrote:
> I accidently checked out a project to the c drive and now all of the
> folders on the c drive including the program files have question marks
> on them and are read only.  How do I undue this?

remove all hidden folders: .svn


Re: I can not do a svn commit

2011-01-13 Thread Bogdan Cristea
On Thursday 13 January 2011 20:47:46 Daniela Rivas wrote:
> Hello everyone
> 
> I am trying to do a svn commit command from a remote working copy to a
> svn repository in a another machine. After I've done this command i
> don't get the update on the repository in the file that i changed.
> Also in the repository i did a svn update and the output that i get is
> "skipped ."
> 
> Can anyone help me with this?
> 
> Regards
> 
> Marguerite

are you sure that the file you are trying to commit is under version control ?
svn status should tell you that. If not do first svn add your_file, then 
commit


Re: Managing two similar Ruby on Rails projects using Subversion

2011-01-18 Thread Bogdan Cristea
On Wednesday 19 January 2011 01:13:26 erica hollis wrote:
> Does anyone know if there is a way to manage two very similar Ruby on Rails
> projects with minor differences, so that both projects could be updated at
> once?  Sometimes only a file in one of the projects would need to be
> updated, but often the change applies to both projects.


post commit hooks


Re: MySQL changes into svn

2011-02-28 Thread Bogdan Cristea
On Monday 28 February 2011 20:31:22 Ryan Schmidt wrote:
> On Feb 28, 2011, at 13:27, Cecil Westerhof wrote:
> > I am just asked if it is possible to put the changes of MySQL
> > databases in svn. I could of-course export the table definitions and
> > store those in svn. I was just wondering if there is a better way?
> 
> If you're looking for something automated, that's probably a pretty
> complicated topic.
> 
> Whenever I change my MySQL database, I do then manually run a script that
> saves the schema to a file, then I commit that file to my Subversion
> repository. I try to limit myself to one database change at a time, so
> that I can write reasonable commit messages.

I am wondering the same thing, how to automate database backup. There is a 
tool in Linux for automatic database backup, but it seems quite buggy. I have 
been able to backup my databases using a bash script and a pre commit hook 
could be the next thing to do, but still no automation there.

regards
-- 
Bogdan Cristea
http://cristeab.googlepages.com


Re: Remote Datasource of my repository

2010-01-04 Thread Bogdan Cristea
On Monday 04 January 2010 13:29:23 Juan Jesús Cremades Monserrat wrote:
> Hi!!
> 
> I've created a Virtual Machine with a Subversion Server. Until Now, the
> content was stored in the same VM but my boss want the data out of it
> because security. There's some meaning to move this data? Thanks!
> 

Please read svn documentation. 
'svnadmin dump' should do this.


Re: permissions denied ?

2010-01-05 Thread Bogdan Cristea
On Tuesday 05 January 2010 14:38:06 Francois Sauterey wrote:
> Hi all,
> 
> I've a svn server. All works fine for several mounthes. But suddently,
> it's no more possible to commit anymore. The french message is :
> "Impossible de déplacer
> '/var/svn/phpAea/db/transactions/1017-wm.txn/props' vers
> '/var/svn/phpAea/db/revprops/1/1018': Permission non accordée"
> something like
> "Can't move '/var/svn/phpAea/db/transactions/1017-wm.txn/props' to
> '/var/svn/phpAea/db/revprops/1/1018': permissions denied"
> 
> I've tested 777 rigths on the /var/svn/phpAea/db/revprops/1 directory,
> without any improvement.
> 
> Any idea ?
> 

What protocol do you use for commit ?
Have you tried 'svn resolve' ?


Re: permissions denied ?

2010-01-05 Thread Bogdan Cristea
On Tuesday 05 January 2010 15:16:05 Francois Sauterey wrote:
> Bogdan Cristea a écrit :
> > On Tuesday 05 January 2010 14:38:06 Francois Sauterey wrote:
> >> Hi all,
> >>
> >> I've a svn server. All works fine for several mounthes. But suddently,
> >> it's no more possible to commit anymore. The french message is :
> >> "Impossible de déplacer
> >> '/var/svn/phpAea/db/transactions/1017-wm.txn/props' vers
> >> '/var/svn/phpAea/db/revprops/1/1018': Permission non accordée"
> >> something like
> >> "Can't move '/var/svn/phpAea/db/transactions/1017-wm.txn/props' to
> >> '/var/svn/phpAea/db/revprops/1/1018': permissions denied"
> >>
> >> I've tested 777 rigths on the /var/svn/phpAea/db/revprops/1 directory,
> >> without any improvement.
> >>
> >> Any idea ?
> >
> > What protocol do you use for commit ?
> 
> It's a svn+ssh server
> 
> > Have you tried 'svn resolve' ?
> 
> "svn resolve -R  --accept  base ." say... nothing
> 

Well, a possible solution would be to simply checkout again your repository, 
by saving in some other folder your current files.


Re: Problem to load a dump file

2010-04-06 Thread Bogdan Cristea
On Tuesday 06 April 2010 11:49:54 Bretin Luc-Patrick (SILICOM) wrote:
> One of my collegues dump the svn repository and sent it to me.
> I try to load it in my svn server and it returns this error :
> 'vnadmin: Le flux de sauvegarde contient une entête mal formée (sans ':')
>  à  ' In english : dump stream contains a malformed header (with no ':') at
>  '
> 
> I tried in two different svn server and I had the same error.
> 
> I find any solution at my problem, I hope you'll find one.
> If you need more informations, just ask me.
> 

Do you use the same svn version as your colleague ?