Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 6369ad3ca35844aeed7c81e76f0b318efbeb3a98 (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
#!/bin/bash
# for master
echo rt.equinox.bundles ; cd rt.equinox.bundles ; git checkout master ; git pull ; cd .. 
echo rt.equinox.framework ; cd rt.equinox.framework ; git checkout master ; git pull ; cd .. 
echo rt.equinox.incubator ; cd rt.equinox.incubator ; git checkout master ; git pull ; cd .. 
echo rt.equinox.p2 ; cd rt.equinox.p2 ; git checkout master ; git pull ; cd .. 
echo eclipse.jdt.core.binaries ; cd eclipse.jdt.core.binaries ; git checkout master ; git pull ; cd .. 
echo eclipse.jdt.core ; cd eclipse.jdt.core ; git checkout master ; git pull ; cd .. 
echo eclipse.jdt.debug ; cd eclipse.jdt.debug ; git checkout master ; git pull ; cd .. 
echo eclipse.jdt ; cd eclipse.jdt ; git checkout master ; git pull ; cd .. 
echo eclipse.jdt.ui ; cd eclipse.jdt.ui ; git checkout master ; git pull ; cd .. 
echo eclipse.pde ; cd eclipse.pde ; git checkout master ; git pull ; cd .. 
echo eclipse.pde.build ; cd eclipse.pde.build ; git checkout master ; git pull ; cd .. 
echo eclipse.pde.ui ; cd eclipse.pde.ui ; git checkout master ; git pull ; cd .. 
echo eclipse.platform.debug ; cd eclipse.platform.debug ; git checkout master ; git pull ; cd .. 
echo eclipse.platform.resources ; cd eclipse.platform.resources ; git checkout master ; git pull ; cd .. 
echo eclipse.platform ; cd eclipse.platform ; git checkout master ; git pull ; cd .. 
echo eclipse.platform.common ; cd eclipse.platform.common ; git checkout master ; git pull ; cd .. 
echo eclipse.platform.releng ; cd eclipse.platform.releng ; git checkout master ; git pull ; cd .. 
echo eclipse.platform.runtime ; cd eclipse.platform.runtime ; git checkout master ; git pull ; cd .. 
echo eclipse.platform.team ; cd eclipse.platform.team ; git checkout master ; git pull ; cd .. 
echo eclipse.platform.text ; cd eclipse.platform.text ; git checkout master ; git pull ; cd .. 
echo eclipse.platform.ua ; cd eclipse.platform.ua ; git checkout master ; git pull ; cd .. 
echo eclipse.platform.ui ; cd eclipse.platform.ui ; git checkout master ; git pull ; cd .. 

Back to the top