[OpenLayers-Commits] r12380 - trunk/openlayers/tools

commits-20090109 at openlayers.org commits-20090109 at openlayers.org
Sat Sep 17 14:01:30 EDT 2011


Author: erilem
Date: 2011-09-17 11:01:29 -0700 (Sat, 17 Sep 2011)
New Revision: 12380

Added:
   trunk/openlayers/tools/git_to_svn.sh
Log:
add a git_to_svn.sh script

Added: trunk/openlayers/tools/git_to_svn.sh
===================================================================
--- trunk/openlayers/tools/git_to_svn.sh	                        (rev 0)
+++ trunk/openlayers/tools/git_to_svn.sh	2011-09-17 18:01:29 UTC (rev 12380)
@@ -0,0 +1,18 @@
+#!/bin/bash
+
+#
+# This script assumes a local clone of the openlayers github repository. This
+# clone needs to be configured with an svn remote to the openlayers svn. Here
+# are the actual steps to get the clone and configure it properly:
+#
+# $ git clone git at github.com:openlayers/openlayers.git
+# $ git svn init -T trunk/openlayers -t tags/openlayers -b branches/openlayers http://svn.openlayers.org/
+#
+# To run this script change to the local clone first:
+#
+# $ cd openlayers
+# $ git_to_svn.sh
+# 
+
+git pull origin master
+git svn dcommit



More information about the Commits mailing list