-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap.sh
360 lines (351 loc) · 10.9 KB
/
bootstrap.sh
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
#!/usr/bin/env bash
N=10
#-----------------
# Функции
#-----------------
DESC='Задание'
create_remote(){
mkdir -p /repo
git init /repo/$N --bare
git remote add $1 /repo/$N
}
create_task(){
N=$((N+1))
git init $N && cd $N
# echo "$N. $DESC" >> task
echo "$DESC" >> task
# echo "test" >> .gitignore
git add .
git commit -m 'Init'
create_remote origin
git push -u origin master
$1
cd ../
}
create_test(){
echo "#!/usr/bin/env bash" > test
$1
echo '
res=$?
if [ $res -eq 0 ]; then
echo "ok"
else
echo "fail"
fi
exit $res' >> test
chmod 744 test
}
#-----------------
# Перенос коммитов и веток
#-----------------
DESC='Сделать коммит.'
x(){ :; }
create_task x
#-----------------
DESC='Сделать слияние feature -> master, где в мастере есть коммит. Посмотреть историю.'
x(){
echo 'line' >> code
git add .
git commit -m 'Code in master'
git push -u origin master
git checkout -b feature
echo 'line' >> module
git add .
git commit -m 'Module in branch'
git checkout master
echo 'line' >> code
git add .
git commit -m 'New changes in master'
git checkout feature
}
create_task x
#-----------------
DESC='Сделать слияние feature -> master, где в мастере нет коммитов.
Посмотреть историю, отменить merge, сделать merge с дополнительным коммитом.'
x(){
echo 'line' >> code
git add .
git commit -m 'Code in master'
git push -u origin master
git checkout -b feature
echo 'line' >> module
git add .
git commit -m 'Module in branch'
}
create_task x
#-----------------
DESC='Случайно сделал коммит в мастер, а надо было в feature. Перенести в feature.'
x(){
echo 'line' >> code
git add .
git commit -m 'Code in master'
git push -u origin master
git branch feature
echo 'line for feature' >> code
git add .
git commit -m 'Code in feature'
}
create_task x
#-----------------
DESC='Случайно сделал несколько коммитов в мастер, а надо было в feature.
Перенести все нужные коммиты в feature.'
x(){
echo 'line' >> code
git add .
git commit -m 'Code'
git push -u origin master
git branch feature
seq 4 | xargs -I{} bash -c "echo 'line {} for feature' >> code; git add .; git commit -m 'Wip {}'"
}
create_task x
#-----------------
DESC='Начал делать задачу Б прямо из ветки А, забыл переключиться в master.
Сделать так, чтобы ветка по задаче Б была из ветки master'
x(){
echo 'line' >> code
git add .
git commit -m 'Code'
git push -u origin master
git checkout -b feature-a
echo 'module_a.call()' >> code
git commit -am 'Feature A call'
seq 4 | xargs -I{} bash -c "echo 'line {}' >> module_a; git add .; git commit -m 'For feature A {}'"
git checkout -b feature-b
echo 'module_b.call()' >> code
git commit -am 'Feature B call'
seq 3 | xargs -I{} bash -c "echo 'line {}' >> module_b; git add .; git commit -m 'For feature B {}'"
}
create_task x
#-----------------
# Наименование и изменения в удалённом репозитории
#-----------------
DESC='Сделал локальный коммит с неправильным описанием, надо поправить.'
x(){
echo 'line' >> code
git add .
git commit -m 'wROnG Msg'
}
create_task x
#-----------------
DESC='Сделал коммит, запушил, надо переименовать'
x(){
echo 'line' >> code
git add .
git commit -m 'wROnG Msg'
git push -u origin master
git clone /repo/$N /tmp/$N
cd /tmp/$N
git config user.name 'Teamleader'
git config user.email '[email protected]'
touch module && git add . && git commit -m Module
git push -u origin master
cd /tasks/$N
rm -rf /tmp/$N
git fetch
}
create_task x
#-----------------
DESC='Неправильно назвал ветку и поместил в репозиторий.
Переименовать удалённую ветку.'
x(){
git checkout -b task-123
echo 'module' >> code
git add .
git commit -m 'task-456: new module'
git push -u origin task-123
}
create_task x
#-----------------
DESC='Поместили пароли в репозитарий, надо почистить историю.'
x(){
seq 1 7 | xargs -I{} bash -c "echo 'code-line-{}' >> code; git add .; git commit -m 'Wip {}'"
pwgen 10 8 > passwords
git add . passwords
seq 8 15 | xargs -I{} bash -c "echo 'code-line-{}' >> code; git add .; git commit -m 'Wip {}'"
pwgen 10 10 >> passwords
seq 16 20 | xargs -I{} bash -c "echo 'code-line-{}' >> code; git add .; git commit -m 'Wip {}'"
# git rm passwords
# git add .
# git cm -m 'Removed passwords'
git push -u origin master
}
create_task x
#-----------------
# Слияние
#-----------------
DESC='Неправильный автоматический merge'
x(){
echo '#!/usr/bin/env bash
func5(){ echo 5; }
func2(){ echo 2; }
func1(){ echo 1; }
func4(){ echo 4; }
func3(){ echo 3; }
func3
func1
func4
func2
func5
' >> script
chmod 744 script
git add .
git cm -m 'Script'
git push -u origin master
}
create_task x
git clone /repo/$N /tasks/$N-alice
cd /tasks/$N-alice
git config user.name 'Alice'
git config user.email '[email protected]'
cd ../
git clone /repo/$N /tasks/$N-bob
cd /tasks/$N-bob
git config user.name 'Bob'
git config user.email '[email protected]'
cd ../
rm -rf /tasks/$N
# hello(){ echo 'hello' }
# hello(){ echo 'hell' }
# echo "`git rev-parse master` `git rev-parse module-1` `git rev-parse module-2` `git rev-parse module-3`"
# if [ "valid" = "valid" ]; then echo 't'; fi
# git show -s --pretty=%P <commit>
#-----------------
DESC='Слить несколько веток в одну одним коммитом.'
x(){
seq 3 | xargs -I{} bash -c "git checkout master; git checkout -b module-{}; echo 'module_{}' >> module_{}; git add .; git commit -m 'Module {}'"
git checkout master
}
create_task x
#-----------------
DESC='Случайно сделал merge --no-ff и push. Отменить.'
x(){
git branch feature
seq 3 | xargs -I{} bash -c "echo 'hotfix {}' >> code; git add .; git commit -m 'Hotfix {}'"
git push -u origin master
git checkout feature
seq 3 | xargs -I{} bash -c "echo 'line {}' >> module; git add .; git commit -m 'Feature {}'"
git checkout master
git merge --no-ff feature
git push -u origin master
}
create_task x
#-----------------
DESC='Сделал revert в мастер, продолжаю работу, хочу снова сделать merge.'
x(){
git branch feature
seq 3 | xargs -I{} bash -c "echo 'hotfix {}' >> code; git add .; git commit -m 'Hotfix {}'"
git push -u origin master
git checkout feature
seq 3 | xargs -I{} bash -c "echo 'line {}' >> module; git add .; git commit -m 'Feature {}'"
git checkout master
git merge --no-ff feature
git push -u origin master
git checkout -b revert-feature
git revert -m 1 master --no-edit master
git checkout master
git merge --no-ff revert-feature
git push -u origin master
git checkout feature
seq 4 5 | xargs -I{} bash -c "echo 'line {}' >> module; git add .; git commit -m 'Feature {}'"
}
create_task x
#-----------------
# DESC='Случайно сделал fast-forward merge, а затем push. Отменить.'
# x(){
# git checkout -b feature
# seq 3 | xargs -I{} bash -c "echo 'line {}' >> module; git add .; git commit -m 'Feature {}'"
# git checkout master
# git merge feature
# git push -u origin master
# }
# create_task x
# #-----------------
# DESC='TODO: Случайно сделал коммиты в мастер и запушил, а надо было в feature, сделать revert.'
# x(){
# seq 3 | xargs -I{} bash -c "echo 'line {}' >> code; git add .; git commit -m 'Feature {}'"
# git push -u origin master
# }
# create_task x
#-----------------
# Сброс изменений и восстановление
#-----------------
DESC='Понял, что всё что было сделано локально - ужас. Вернуть до состояния удалённого репозитория'
x(){
echo 'work' >> code; git add .; git commit -m 'Work'
}
create_task x
#-----------------
DESC='Случайно сделал reset --hard, спасти что было.'
x(){
git checkout -b feature
seq 3 | xargs -I{} bash -c "echo 'line {}' >> code; git add .; git commit -m 'Wip {}'"
git reset --hard master
}
create_task x
#-----------------
DESC='Случайно сделал удалил ветку, спасти что было.'
x(){
git checkout -b feature
seq 3 | xargs -I{} bash -c "echo 'line {}' >> code; git add .; git commit -m 'Wip {}'"
git checkout master
git br -D feature
}
create_task x
#-----------------
DESC='Не могу сделать pull, изменения в локальном репозитории.'
x(){
echo 'say1(){ echo 1; }' > code
git add .
git commit -m 'Some code'
git push -u origin master
git clone /repo/$N/ /tmp/$N
cd /tmp/$N
git config user.name 'Teamlead'
git config user.email '[email protected]'
echo 'say2(){ echo 2; }' >> code
git add .
git commit -m 'New function'
git push -u origin master
rm -rf /tmp/$N
cd /tasks/$N
echo -e 'prototype\ncontaining\nmultiple\nlines' >> code
}
create_task x
#-----------------
DESC='Добавил изменения в stash и очистил. Вернуть что было.'
x(){
echo 'say1(){ echo 1; }' > code
git add .
git commit -m 'Some code'
git push -u origin master
git clone /repo/$N/ /tmp/$N
cd /tmp/$N
git config user.name 'Teamlead'
git config user.email '[email protected]'
echo 'say2(){ echo 2; }' >> code
git add .
git commit -m 'New function'
git push -u origin master
rm -rf /tmp/$N
cd /tasks/$N
echo -e 'prototype\ncontaining\nmultiple\nlines' >> code
git stash save 'Some experiments'
git pull --rebase master
git stash clear
}
create_task x
#-----------------
DESC='В каком-то из коммитов сломали тесты. Найти нужный коммит.'
x(){
local q=$(((RANDOM % 100) + 1))
local shebang="#!/usr/bin/env bash"
echo $shebang | tee code test
echo -n ":" >> test
chmod 744 code test; git add .; git commit -m 'Started coding'
git push -u origin master;
pwgen 10 $q -1 | xargs -I{} bash -c "echo 'echo \"{}\"' >> code; echo -n ' && ./code | grep -Fxq {}' >> test; git add .; git commit -m 'Wip'"
local err="`pwgen 10 1 -1`"
echo $err | xargs -I{} bash -c "echo 'echo \"`pwgen 10 1 -1`\"' >> code; echo -n ' && ./code | grep -Fxq {}' >> test; git add .; git commit -m 'Wip'"
pwgen 10 $((99 - q)) -1 | xargs -I{} bash -c "echo 'echo \"{}\"' >> code; echo -n ' && ./code | grep -Fxq {}' >> test; git add .; git commit -m 'Wip'"
}
create_task x