w2c / ispconfig3_roundcube

ISPConfig3 plugins for Roundcube
https://www.web-wack.at
GNU General Public License v3.0
180 stars 63 forks source link

move all plugins to seperate github repos #5

Open horfic opened 11 years ago

horfic commented 11 years ago

Is necessary to get support for the plugin system from roundcube version 1.0 which is based on composer

Infos on: http://plugins.roundcube.net and http://plugins.roundcube.net/about

vStone commented 8 years ago
find . -maxdepth 1 -type d -iname "ispconfig3*" | while read line; do repo=`basename $line`; ./split_folder.sh $repo; done;

split_folder.sh:

#!/bin/bash

repo=$1
branch=roundcube-${repo}
git subtree split --prefix=$repo -b $branch
git remote add $repo git@github.com:w2c/roundcube-$repo
git push -u $repo $branch:master