PostGIS / GEOS / MapServer with git
Posted on by strk
Category: Free Software GIS
I’ve setup git mirrors of PostGIS, GEOS and MapServer SVN repositories updated hourly. You can clone the git repositories and re-attach to the SVN ones with this simple script (untested):
for repo in postgis geos mapserver; do
git clone git://github.com/strk/${repo}.git
cd ${repo}
git svn init http://svn.osgeo.org/${repo}/trunk
git update-ref refs/remotes/git-svn refs/heads/master
git svn fetch
cd -
done
After that you can run git svn rebase to get changes from SVN or git pull to get changes from GIT (may be one hour late)
Happy hacking !