Skip to main content
summaryrefslogtreecommitdiffstats
blob: a0b768cae077e1bc422057cbe59ac7cbc2672c17 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/bash
# for this branch.
# the branches of submodules should match what is in ../streams/repositories.txt
# This script assumes aggregator project has been cloned,
# and submodules initially 'updated', as per
# http://wiki.eclipse.org/Platform-releng/Platform_Build#cloning_platform_source_tree
#
# intended to be (temporarily) 'moved up' several directories to get to correct location
branch=master
#branch=R4_5_maintenance
echo rt.equinox.bundles ; cd ../rt.equinox.bundles ; git fetch; git checkout ${branch} ; git pull ;
echo rt.equinox.framework ; cd ../rt.equinox.framework ; git fetch; git checkout ${branch} ; git pull ;
echo rt.equinox.binaries ; cd ../rt.equinox.binaries ; git fetch; git checkout ${branch} ; git pull ;
echo rt.equinox.p2 ; cd ../rt.equinox.p2 ; git fetch; git checkout ${branch} ; git pull ;
echo eclipse.jdt.core.binaries ; cd ../eclipse.jdt.core.binaries ; git fetch; git checkout ${branch} ; git pull ;
echo eclipse.jdt.core ; cd ../eclipse.jdt.core ; git fetch; git checkout ${branch} ; git pull ;
echo eclipse.jdt.debug ; cd ../eclipse.jdt.debug ; git fetch; git checkout ${branch} ; git pull ;
echo eclipse.jdt ; cd ../eclipse.jdt ; git fetch; git checkout ${branch} ; git pull ;
echo eclipse.jdt.ui ; cd ../eclipse.jdt.ui ; git fetch; git checkout ${branch} ; git pull ;
echo eclipse.pde ; cd ../eclipse.pde ; git fetch; git checkout ${branch} ; git pull ;
echo eclipse.pde.build ; cd ../eclipse.pde.build ; git fetch; git checkout ${branch} ; git pull ;
echo eclipse.pde.ui ; cd ../eclipse.pde.ui ; git fetch; git checkout ${branch} ; git pull ;
echo eclipse.platform.debug ; cd ../eclipse.platform.debug ; git fetch; git checkout ${branch} ; git pull ;
echo eclipse.platform.resources ; cd ../eclipse.platform.resources ; git fetch; git checkout ${branch} ; git pull ;
echo eclipse.platform ; cd ../eclipse.platform ; git fetch; git checkout ${branch} ; git pull ;
echo eclipse.platform.common ; cd ../eclipse.platform.common ; git fetch; git checkout ${branch} ; git pull ;
echo eclipse.platform.releng ; cd ../eclipse.platform.releng ; git fetch; git checkout ${branch} ; git pull ;
echo eclipse.platform.runtime ; cd ../eclipse.platform.runtime ; git fetch; git checkout ${branch} ; git pull ;
echo eclipse.platform.team ; cd ../eclipse.platform.team ; git fetch; git checkout ${branch} ; git pull ;
echo eclipse.platform.text ; cd ../eclipse.platform.text ; git fetch; git checkout ${branch} ; git pull ;
echo eclipse.platform.ua ; cd ../eclipse.platform.ua ; git fetch; git checkout ${branch} ; git pull ;
echo eclipse.platform.ui ; cd ../eclipse.platform.ui ; git fetch; git checkout ${branch} ; git pull ;
echo eclipse.platform.ui.tools ; cd ../eclipse.platform.ui.tools ; git fetch; git checkout ${branch} ; git pull ;
echo eclipse.platform.swt ; cd ../eclipse.platform.swt ; git fetch; git checkout ${branch} ; git pull ;
echo eclipse.platform.swt.binaries ; cd ../eclipse.platform.swt.binaries ; git fetch; git checkout ${branch} ; git pull ;

Back to the top