-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcgw.sh
427 lines (407 loc) · 12.4 KB
/
cgw.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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
#!/bin/bash
buff=$(mktemp /tmp/cgw-$RANDOM.XXXXXX)
buff2=$(mktemp /tmp/cgw2-$RANDOM.XXXXXX)
# функции
ShowList()
{
OFFSET=0
valid=true
while [ valid ]
do
clear
echo $@
IFS=$'\n' read -d '' -r -a LINES < "$buff"
for (( INDEX=0; INDEX<10; INDEX++ ))
do
local CURENT_INDEX=$(($OFFSET + $INDEX))
echo "${LINES[CURENT_INDEX]}"
done
read -n1 -p "j and k for scroll list, e - close: " LEVEL
if [ "$LEVEL" = "e" ]; then
clear
break;
elif [ "$LEVEL" = "j" ]; then
if [ $(($OFFSET + 10 + 1)) -le ${#LINES[@]} ]; then
OFFSET=$(($OFFSET + 1))
fi
elif [ "$LEVEL" = "k" ]; then
if [ $(($OFFSET - 1)) -ge 0 ]; then
OFFSET=$(($OFFSET - 1))
fi
fi
done
}
SelectOneFromList()
{
ONEFORMLIST=""
FILTER=""
OFFSET=0
valid=true
while [ valid ]
do
clear
echo $@
if [ "$FILTER" != "" ];
then
cat "$buff" | grep "$FILTER" > "$buff2"
IFS=$'\n' read -d '' -r -a LINES < "$buff2"
else
IFS=$'\n' read -d '' -r -a LINES < "$buff"
fi
for (( INDEX=0; INDEX<10; INDEX++ ))
do
CURENT_INDEX=$(($OFFSET + $INDEX))
if [ "$CURENT_INDEX" = "${#LINES[@]}" ]
then
break
fi
echo "$INDEX ${LINES[CURENT_INDEX]}"
done
read -n1 -p "j and k for scroll list, e - close, f - filter, d - disable filter, 0-9 for make choice: " LEVEL
if [ "$LEVEL" = "e" ]; then
clear
break
elif [ "$LEVEL" = "j" ]; then
if [ $(($OFFSET + 11)) -le ${#LINES[@]} ]; then
OFFSET=$(($OFFSET + 1))
fi
elif [ "$LEVEL" = "k" ]; then
if [ $(($OFFSET - 1)) -ge 0 ]; then
OFFSET=$(($OFFSET - 1))
fi
elif [ "$LEVEL" = "d" ]; then
FILTER=""
elif [ "$LEVEL" = "f" ]; then
echo ""
read -e -p "Substring to search (e - cansel): " FILTER
if [ "$FILTER" = "e" ]; then
FILTER=""
fi
else
CURENT_INDEX=$(($OFFSET + $LEVEL))
ONEFORMLIST="${LINES[CURENT_INDEX]}"
clear
break
fi
done
}
# история файла
if [ ! -z "$1" ]; then
while true
do
git log --pretty=format:"%h | %<(30)%an | %<(30)%ar | %s" "$1" > "$buff"
SelectOneFromList "File history:"
if [ "$ONEFORMLIST" != "" ]; then
git show --output="$buff" "${ONEFORMLIST:0:8}" -- "$1"
# read -p "Press any key to continue... " -n1 -s
# git show "${ONEFORMLIST:0:8}" -- "$1" > "$buff"
ShowList "Commit ${ONEFORMLIST:0:8}:"
else
exit 0
fi
done
fi
# основной цикл
valid=true
while [ valid ]
do
CURRENT_BRANCH=$(git rev-parse --abbrev-ref HEAD)
CURRENT_PATH=$(pwd)
echo "______________________________________________________________"
echo "Branch $CURRENT_BRANCH Path: $CURRENT_PATH"
read -e -p "What you want? " COMMAND
clear
if [ "$COMMAND" = "s" ];
then
git status -s > "$buff"
ShowList "Status:"
elif [ "$COMMAND" = "a" ];
then
echo "Add files:"
git status -s
git add .
elif [ "$COMMAND" = "c" ];
then
echo "Files add to commit:"
git status -s
git add .
# git status -s |
# while read -r LINE
# do
# if [ "${LINE:0:2}" = " D" ];
# then
# GITCOMMAND="rm"
# else
# GITCOMMAND="add"
# echo "add ${LINE:2}"
# fi
# git $GITCOMMAND "${LINE:2}"
# done
read -e -p "Commit test (e -cancel): " COMMIT
if [ "$COMMIT" != "e" ];
then
git commit -m $COMMIT
fi
elif [ "$COMMAND" = "p" ];
then
echo "Push:"
git push origin $CURRENT_BRANCH
elif [ "$COMMAND" = "pf" ];
then
echo "Push force:"
git push -f origin $CURRENT_BRANCH
elif [ "$COMMAND" = "cp" ];
then
echo "Files add to commit:"
git status -s
git add .
# git status -s |
# while read -r LINE
# do
# if [ "${LINE:0:2}" = " D" ];
# then
# GITCOMMAND="rm"
# else
# GITCOMMAND="add"
# echo "add ${LINE:2}"
# fi
# git $GITCOMMAND "${LINE:2}"
# done
read -e -p "Commit test (e - cancel): " COMMIT
if [ "$COMMIT" != "e" ];
then
git commit -m "$COMMIT"
git push origin $CURRENT_BRANCH
fi
elif [ "$COMMAND" = "pl" ];
then
echo "Pull:"
git pull origin $CURRENT_BRANCH
elif [ "$COMMAND" = "ff" ];
then
echo "Fetch force:"
git fetch --force
# --------------------------------------------
elif [ "$COMMAND" = "m" ];
then
git branch --sort=-committerdate > "$buff"
SelectOneFromList "Select branch for merge in current: "
if [ "$ONEFORMLIST" != "" ];
then
git merge --no-ff --no-edit "${ONEFORMLIST:2}"
fi
elif [ "$COMMAND" = "m+" ];
then
git branch -r > "$buff"
SelectOneFromList "Select remote branch for merge in current: "
if [ "$ONEFORMLIST" != "" ];
then
git merge --no-ff --no-edit "${ONEFORMLIST:2}"
fi
elif [ "$COMMAND" = "r" ];
then
git branch --sort=-committerdate > "$buff"
SelectOneFromList "Select branch for rebase in current: "
if [ "$ONEFORMLIST" != "" ];
then
git pull --rebase origin "${ONEFORMLIST:2}"
fi
elif [ "$COMMAND" = "rc" ];
then
git rebase --continue
elif [ "$COMMAND" = "rs" ];
then
git rebase --skip
elif [ "$COMMAND" = "ra" ];
then
git rebase --abort
# --------------------------------------------
elif [ "$COMMAND" = "b" ];
then
git branch --sort=-committerdate > "$buff"
ShowList "Branches:"
elif [ "$COMMAND" = "b+" ];
then
git branch -r > "$buff"
ShowList "Remote branches:"
elif [ "$COMMAND" = "rnb" ];
then
echo "Rename current branch:"
read -e -p "New name to current branch (e - cancel): " BRANCH
if [ "$BRANCH" != "e" ];
then
git checkout -b "$BRANCH" "$CURRENT_BRANCH"
git branch -d "$CURRENT_BRANCH"
git push origin --delete "$CURRENT_BRANCH"
fi
elif [ "$COMMAND" = "cb" ];
then
git branch --sort=-committerdate > "$buff"
SelectOneFromList "Select branch for checkout: "
if [ "$ONEFORMLIST" != "" ];
then
git checkout "${ONEFORMLIST:2}"
fi
elif [ "$COMMAND" = "cb+" ];
then
git branch -r > "$buff"
SelectOneFromList "Select remote branch for checkout: "
if [ "$ONEFORMLIST" != "" ];
then
git checkout -t "${ONEFORMLIST:2}"
fi
elif [ "$COMMAND" = "db" ];
then
git branch --sort=-committerdate > "$buff"
SelectOneFromList "Select branch for delete: "
if [ "$ONEFORMLIST" != "" ];
then
git branch -D "${ONEFORMLIST:2}"
fi
elif [ "$COMMAND" = "db+" ];
then
git branch -r > "$buff"
SelectOneFromList "Select remote branch for delete: "
if [ "$ONEFORMLIST" != "" ];
then
git push origin --delete "${ONEFORMLIST:9}"
fi
elif [ "$COMMAND" = "ab" ];
then
echo "Add branch from current branch"
read -e -p "Branch name (e - cancel): " BRANCH
if [ "$BRANCH" != "e" ];
then
git checkout -b "$BRANCH" "$CURRENT_BRANCH"
fi
elif [ "$COMMAND" = "bfc" ];
then
git log --pretty=format:"%h | %<(30)%an | %<(30)%ar | %s" > "$buff"
SelectOneFromList "Select commit for new branch: "
if [ "$ONEFORMLIST" != "" ];
then
echo "Add branch from commit ${ONEFORMLIST:0:7}"
read -e -p "Branch name (e - cancel): " BRANCH
if [ "$BRANCH" != "e" ];
then
git checkout -b "$BRANCH" "${ONEFORMLIST:0:7}"
fi
fi
elif [ "$COMMAND" = "bh" ];
then
git log --pretty=format:"%h | %<(30)%an | %<(30)%ar | %s" > "$buff"
ShowList "Branch history:"
elif [ "$COMMAND" = "bp" ];
then
echo "Remote prune origin:"
git remote prune origin
# --------------------------------------------
elif [ "$COMMAND" = "rc" ];
then
git log --pretty=format:"%h | %<(30)%an | %<(30)%ar | %s" > "$buff"
SelectOneFromList "Select commit for revert: "
if [ "$ONEFORMLIST" != "" ];
then
git revert "${ONEFORMLIST:0:7}" --no-edit
echo
fi
# --------------------------------------------
elif [ "$COMMAND" = "t" ];
then
git tag --sort=-creatordate > "$buff"
ShowList "Tags:"
elif [ "$COMMAND" = "ftf" ];
then
echo "Fetch tag force:"
git fetch --tags --force
elif [ "$COMMAND" = "at" ];
then
echo "Add tag on last commit:"
read -e -p "Tag name (e - cancel): " TAG
if [ "$TAG" != "e" ];
then
git tag "$TAG"
git push origin "$TAG"
fi
elif [ "$COMMAND" = "dt" ];
then
git tag --sort=-creatordate > "$buff"
SelectOneFromList "Select tag for delete: "
if [ "$ONEFORMLIST" != "" ];
then
git tag -d "$ONEFORMLIST"
git push --delete origin "$ONEFORMLIST"
fi
elif [ "$COMMAND" = "mt" ];
then
git tag --sort=-creatordate > "$buff"
SelectOneFromList "Select tag for move: "
if [ "$ONEFORMLIST" != "" ];
then
git tag -d "$ONEFORMLIST"
git push --delete origin "$ONEFORMLIST"
git tag "$ONEFORMLIST"
git push origin "$ONEFORMLIST"
fi
# --------------------------------------------
elif [ "$COMMAND" = "hr" ];
then
echo "Reset:"
git reset --hard HEAD
elif [ "$COMMAND" = "cf" ]; then
git status -s > "$buff"
SelectOneFromList "Select file for checkout: "
if [ "$ONEFORMLIST" != "" ];
then
git checkout "${ONEFORMLIST:3}"
fi
elif [ "$COMMAND" = "h" ]; then
echo "Help:"
echo "s - show status"
echo "a - add unstorage files"
echo "c - commit all changed files"
echo "p - push to current branch"
echo "pf - push force to current branch"
echo "cp - commit all changed fales and push to current branch"
echo "pl - pull form current branch"
echo "f - fetch"
echo "ff - fetch force"
echo "------------------------"
echo "m - merge in current branch"
echo "m+ - merge remote in current branch"
echo "r - rebase in current branch"
echo "rc - rebase continue"
echo "rs - rebase skip"
echo "ra - rebase abort"
echo "------------------------"
echo "b - branch list"
echo "b+ - remote branch list"
echo "rnb - rename current branch"
echo "cb - change branch "
echo "cb+ - change on remote branch "
echo "db - delete branch "
echo "db+ - delete remote branch "
echo "ab - add branch from current branch"
echo "bfc - branch from commit"
echo "bh - current branch history"
echo "bp - remote branch prune"
echo "------------------------"
echo "rc - revert commit"
echo "------------------------"
echo "t - tag list"
echo "ftf - fetch tag force"
echo "dt - delete tag local and remote"
echo "at - add tag local and remote"
echo "mt - remove tag from old commit and add to current"
echo "------------------------"
echo "cf - checkout file"
# echo "fh - file history"
echo "hr - hard reset branch"
echo "------------------------"
echo "h - help"
echo "e - exit"
elif [ "$COMMAND" = "e" ];
then
break
fi
done