cvs: SVNROOT / run-conversion.php
[email protected] ("Gwynne Raskind") Sun, 21 Jun 2009 17:19:20 -0000
| Newsgroups | svn.migration |
|---|---|
| Message-ID | <cvsgwynne1245604760@cvsserver> |
gwynne Sun Jun 21 17:19:20 2009 UTC
Modified files:
/SVNROOT run-conversion.php
Log:
ignores pass no longer needed since cvs2svn 2.2.0
http://cvs.php.net/viewvc.cgi/SVNROOT/run-conversion.php?r1=1.62&r2=1.63&diff_format=u
Index: SVNROOT/run-conversion.php
diff -u SVNROOT/run-conversion.php:1.62 SVNROOT/run-conversion.php:1.63
--- SVNROOT/run-conversion.php:1.62 Sun Jun 21 16:35:00 2009
+++ SVNROOT/run-conversion.php Sun Jun 21 17:19:19 2009
@@ -7,7 +7,7 @@
// -----------------------------------------------------------------------------------------------------------------------------
// Constants
-$version = substr('$Revision: 1.62 $', strlen('$Revision: '), -2);
+$version = substr('$Revision: 1.63 $', strlen('$Revision: '), -2);
$passes = array(
'processcvs', // Process CVS modules
@@ -455,8 +455,9 @@
// ignores pass
function pass_ignores()
{
+/* This is no longer necessary since cvs2svn 2.2.0.
+
// Recursively processes the entire converted SVN repository, converting .cvsignore files to svn:ignore properties.
- // XXX THIS MAY NO LONGER BE NECESSARY AS OF cvs2svn 2.2.0!
$svnPath = "{$GLOBALS['options']['svnroot']}/repository";
$coDir = "{$GLOBALS['temp_path']}/ignore_co";
$dirStack = array($svnPath);
@@ -479,6 +480,7 @@
}
}
}
+*/
}
// -----------------------------------------------------------------------------------------------------------------------------