Lines Matching refs:svn
46 # Add SVN version numbers for commit (can't do that until
141 print STDERR " --[no-]update Update ChangeLogs from svn before adding entry (default: update)\n";
156 my $SVN = "svn";
340 # Get the latest ChangeLog files from svn.
347 print STDERR " Running 'svn update' to update ChangeLog files.\n";
348 open ERRORS, "-|", $SVN, "update", @logs
349 or die "The svn update of ChangeLog files failed: $!.\n";
1293 $command = "$SVN diff --diff-cmd diff -x -N $pathsString";
1309 $command = "$SVN stat $filesString";
1324 $command = "'$FindBin::Bin/svn-create-patch' $changedFilesString";
1343 open INFO, "$SVN info . |" or die;
1351 open INFO, "$SVN info '$file' |" or die;
1369 open PROPLIST, "$SVN proplist '$file' |" or die;
1371 $addedProperties{$1} = 1 if /^ (.+?)[\r\n]*$/ && $1 ne 'svn:mergeinfo';
1375 open PROPLIST, "$SVN proplist '$original' |" or die;
1389 open DIFF, "$SVN diff '$file' |" or die;
1405 # Older versions of svn just say "Name" instead of the type
1462 print; # error output from svn stat
1545 my %svn = (
1554 return $svn{$status} if $isSVN;
1564 my %svn = (
1572 my %git = %svn;
1578 $description = sprintf($svn{$status}, $original) if $isSVN && exists $svn{$status};