This repository has been archived by the owner on Nov 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FIDATA-clone-master.cmd
84 lines (72 loc) · 1.98 KB
/
FIDATA-clone-master.cmd
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
SETLOCAL
SET GIT_DIR=
SET GIT_WORK_TREE=
SET GIT_INDEX_FILE=
SET GIT_OBJECT_DIRECTORY=
SET GIT_NAMESPACE=
REM TODO: Do I really need FIDATA branch here?
REM Pros: To merge it with master
REM Cons: I already have it in main workspace
REM TODO: Make a list (file)
git clone https://github.com/FIDATA/cpython.git && (
cd cpython
git remote add upstream https://github.com/akheron/cpython.git
git branch FIDATA origin/FIDATA
cd ..
)
git clone https://github.com/FIDATA/bottleneck.git && (
cd bottleneck
git remote add upstream https://github.com/kwgoodman/bottleneck.git
git branch FIDATA origin/FIDATA
cd ..
)
git clone https://github.com/FIDATA/numpy.git && (
cd numpy
git remote add upstream https://github.com/numpy/numpy.git
git branch FIDATA origin/FIDATA
cd ..
)
git clone https://github.com/FIDATA/scipy.git && (
cd scipy
git remote add upstream https://github.com/scipy/scipy.git
git branch FIDATA origin/FIDATA
cd ..
)
git clone https://github.com/FIDATA/numexpr.git && (
cd numexpr
git remote add upstream https://github.com/pydata/numexpr.git
git branch FIDATA origin/FIDATA
cd ..
)
git clone https://github.com/FIDATA/matplotlib.git && (
cd matplotlib
git remote add upstream https://github.com/matplotlib/matplotlib.git
git branch FIDATA origin/FIDATA
cd ..
)
git clone https://github.com/FIDATA/statsmodels.git && (
cd statsmodels
git remote add upstream https://github.com/statsmodels/statsmodels.git
git branch FIDATA origin/FIDATA
cd ..
)
git clone https://github.com/FIDATA/pandas.git && (
cd pandas
git remote add upstream https://github.com/pydata/pandas.git
git branch FIDATA origin/FIDATA
cd ..
)
git clone https://github.com/FIDATA/psycopg2.git && (
cd psycopg2
git remote add upstream https://github.com/psycopg/psycopg2.git
git branch FIDATA origin/FIDATA
cd ..
)
git clone https://github.com/FIDATA/sqlalchemy.git && (
cd sqlalchemy
git remote add upstream https://github.com/zzzeek/sqlalchemy.git
git branch FIDATA origin/FIDATA
cd ..
)
ENDLOCAL
PAUSE