Home | History | Annotate | Download | only in Scripts

Lines Matching refs:SVN

46 #   Add SVN version numbers for commit (can't do that until
134 print STDERR " --[no-]update Update ChangeLogs from svn before adding entry (default: update)\n";
148 my $SVN = "svn";
320 # Get the latest ChangeLog files from svn.
327 print STDERR " Running 'svn update' to update ChangeLog files.\n";
328 open ERRORS, "-|", $SVN, "update", @logs
329 or die "The svn update of ChangeLog files failed: $!.\n";
1230 $command = "$SVN diff --diff-cmd diff -x -N $pathsString";
1246 $command = "$SVN stat $filesString";
1261 $command = "'$FindBin::Bin/svn-create-patch' $changedFilesString";
1280 open INFO, "$SVN info . |" or die;
1288 open INFO, "$SVN info '$file' |" or die;
1306 open PROPLIST, "$SVN proplist '$file' |" or die;
1308 $addedProperties{$1} = 1 if /^ (.+?)[\r\n]*$/ && $1 ne 'svn:mergeinfo';
1312 open PROPLIST, "$SVN proplist '$original' |" or die;
1326 open DIFF, "$SVN diff '$file' |" or die;
1342 # Older versions of svn just say "Name" instead of the type
1399 print; # error output from svn stat
1482 my %svn = (
1491 return $svn{$status} if $isSVN;
1501 my %svn = (
1509 my %git = %svn;
1515 $description = sprintf($svn{$status}, $original) if $isSVN && exists $svn{$status};