Open horfic opened 11 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
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