diff options
Diffstat (limited to 'subtree.sh')
-rwxr-xr-x | subtree.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/subtree.sh b/subtree.sh new file mode 100755 index 000000000..5151bb92c --- /dev/null +++ b/subtree.sh @@ -0,0 +1,20 @@ +#!/bin/sh + +command=$1 +branch=$2 +plugin=$3 + +if [ ! $command ] || [ ! $branch ]; then + echo " Usage: ./subtree.sh <command> <branch> [<plugin-name>] + Example: ./subtree.sh pull develop etherpad" + exit +fi + +git checkout $branch +if [ $plugin ]; then + git subtree $command --prefix mod/$plugin git@gitorious.org:lorea/$plugin.git $branch +else + cat *-plugins | while read plugin; do + git subtree $command --prefix mod/$plugin git@gitorious.org:lorea/$plugin.git $branch + done +fi |