finished and publish eclipse.platform.runtime.git
diff --git a/scripts/migration_script.sh b/scripts/migration_script.sh
index 8745e93..435664f 100644
--- a/scripts/migration_script.sh
+++ b/scripts/migration_script.sh
@@ -810,3 +810,86 @@
# now we're ready to start stiching repos together :-)
+##################################################
+# merging eclipse.platform.runtime.e4 into eclipse.platform.runtime
+
+MODULE_NAME=eclipse.platform.runtime
+MIGR_PASS=$MIGR/$MODULE_NAME/pass3
+MIGR_E4_PASS=$MIGR/eclipse.platform.runtime.e4/pass3
+
+cd $ROOT
+comm -12 $MIGR_PASS/tags.txt $MIGR_E4_PASS/tags.txt >$MIGR_PASS/common_tags.txt
+comm -12 $MIGR_PASS/branches.txt $MIGR_E4_PASS/branches.txt >$MIGR_PASS/common_branches.txt
+
+# no common branches or tags ... good
+
+cd target.$MODULE_NAME
+git config user.email pwebster
+git config user.name "Paul Webster"
+
+git remote add e4 ../target.eclipse.platform.runtime.e4
+git fetch e4
+git merge e4/master
+
+rm -f $MIGR_PASS/localize_e4_branches.sh
+
+git branch -r | grep -v e4\/master >$MIGR_PASS/remote_e4_branches.txt
+for f in $( cat $MIGR_PASS/remote_e4_branches.txt ); do
+BR=$( echo $f | sed 's/^.*\///g' )
+echo git branch -t $BR $f >>$MIGR_PASS/localize_e4_branches.sh
+done
+
+/bin/bash $MIGR_PASS/localize_e4_branches.sh
+git remote rm e4
+
+
+cd $ROOT
+cat - >gitignore <<EOF
+bin/
+*~
+*.rej
+*.bak
+core
+*.patch
+javacore.*
+heapdump.*
+core.*
+Snap.*
+target/
+
+EOF
+
+cd target.$MODULE_NAME
+
+# from http://stackoverflow.com/questions/3895453/how-do-i-make-a-git-commit-in-the-past
+rm -f t1.txt
+git checkout master
+
+new_file=$(git hash-object -w ../gitignore)
+git filter-branch \
+--index-filter \
+'git update-index --add --cacheinfo 100644 '"$new_file"' .gitignore' \
+--tag-name-filter cat \
+-- --all
+
+git reset --hard
+
+#create deploy
+cd $ROOT
+git clone --bare target.$MODULE_NAME deploy.$MODULE_NAME
+cd deploy.$MODULE_NAME
+git remote rm origin
+git config -l
+git config --add core.sharedrepository 1
+
+#final pack and prune step
+git prune
+git repack -a -d --depth=250 --window=250
+git gc --aggressive
+git repack -a -d --depth=250 --window=250
+
+
+scp -r * pwebster@git.eclipse.org:/gitroot/platform/${MODULE_NAME}.git
+#
+# DONE, eclipse.platform.runtime
+#
\ No newline at end of file