-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathMakefile
More file actions
60 lines (51 loc) · 1.34 KB
/
Makefile
File metadata and controls
60 lines (51 loc) · 1.34 KB
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
.PHONY: all qpa-s qpa-l gb-s gb-l hack-s hack-l
all:
echo "qpa-s|qpa-l|gb-s|gb-l|hack-s|hack-l"
qpa-s:
git checkout staging
git checkout deploy/qpa-staging
git reset --hard origin/staging
git push -f origin deploy/qpa-staging
git checkout staging
qpa-l:
git checkout staging
git checkout deploy/qpa-live
git reset --hard origin/staging
git push -f origin deploy/qpa-live
git checkout staging
gb-s:
git checkout staging
git checkout deploy/golyabal-staging
git reset --hard origin/staging
git push -f origin deploy/golyabal-staging
git checkout staging
gb-l:
git checkout staging
git checkout deploy/golyabal-live
git reset --hard origin/staging
git push -f origin deploy/golyabal-live
git checkout staging
hack-s:
git checkout staging
git checkout deploy/hackathon-staging
git reset --hard origin/staging
git push -f origin deploy/hackathon-staging
git checkout staging
hack-l:
git checkout staging
git checkout deploy/hackathon-live
git reset --hard origin/staging
git push -f origin deploy/hackathon-live
git checkout staging
gtb-s:
git checkout staging
git checkout deploy/gtb-staging
git reset --hard origin/staging
git push -f origin deploy/gtb-staging
git checkout staging
gtb-l:
git checkout staging
git checkout deploy/gtb-live
git reset --hard origin/staging
git push -f origin deploy/gtb-live
git checkout staging