[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn Auto ADDing files added to a dir

From: Hyuns Kim <sng2nara_at_gmail.com>
Date: 2004-10-30 13:14:38 CEST

I wrote perl codes below this.

#!/usr/bin/perl
$stat = `svn stat`;
@stat = split(/\n/,$stat);
chomp(@stat);
foreach (@stat)
{
        print `svn add $1` if( $_ =~ /^\?\s+(\S+)/ );
}
print `svn commit -m"auto commit"`;
#print `svn commit @ARGV`;

But I cannot solve a problem that double-quoted messages are striped in Win2000.
Try that. :-)

On Fri, 29 Oct 2004 06:19:25 -0500, Carl Karsten <carl@personnelware.com> wrote:
> Is there a way to have "svn commit" check for new files in the ?
>
> Carl K
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: users-help@subversion.tigris.org
>
>

-- 
/*
 * Factory Automation System
 * software developer
 * Hyuns Kim
 * South Korea
 * http://hs.sumgim.net (in KOREAN)
 */
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Sat Oct 30 13:15:44 2004

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.