I would like to automatically check in a directory to SVN, to maintain the changes that area made to those txt files over time. These files are configuration files, and it would be good to be able to revert back by simply checking out the older versions. But I would to check in the files every files minutes, and I'm sure SVN will not use up any disc space, unless there are any changes.
I already have an svn server up and running in production -- Any help?
Linedata Services (UK) Ltd Registered Office: Bishopsgate Court, 4-12 Norton Folgate, London, E1 6DB Registered in England and Wales No 3027851 VAT Reg No 778499447
-----Original Message-----
From: centos-bounces@centos.org [mailto:centos-bounces@centos.org] On Behalf Of Mr Gabriel Sent: 25 January 2010 10:47 To: centos@centos.org Subject: [CentOS] Automatically check into SVN?
I would like to automatically check in a directory to SVN, to maintain the changes that area made to those txt files over time. These files are configuration files, and it would be good to be able to revert back by simply checking out the older versions. But I would to check in the files every files minutes, and I'm sure SVN will not use up any disc space, unless there are any changes.
I already have an svn server up and running in production -- Any help?
You might get more luck in the users@subversion.apache.org ML.
Maybe you can have a cron job that check the status of the WC and if there are any changes commits them. But you run the risk to commit changes while you're still working on the files.
Why can't you manually commit the changes?
Giulio
Mr Gabriel wrote:
I would like to automatically check in a directory to SVN, to maintain the changes that area made to those txt files over time. These files are configuration files, and it would be good to be able to revert back by simply checking out the older versions. But I would to check in the files every files minutes, and I'm sure SVN will not use up any disc space, unless there are any changes.
I already have an svn server up and running in production -- Any help
You could take a look at FSVS, its description appears similar to your situation:
-Greg
On 25/01/2010 13:04, Greg Bailey wrote:
Mr Gabriel wrote:
I would like to automatically check in a directory to SVN, to maintain the changes that area made to those txt files over time. These files are configuration files, and it would be good to be able to revert back by simply checking out the older versions. But I would to check in the files every files minutes, and I'm sure SVN will not use up any disc space, unless there are any changes.
I already have an svn server up and running in production -- Any help
You could take a look at FSVS, its description appears similar to your situation:
-Greg
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Thank you Greg, this seems to be exactly what I want. Perfect!