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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
|
#compdef gita
__gita_get_repos() {
local -a repositories
repositories=($(_call_program commands gita ls))
_describe -t repositories 'gita repositories' repositories
}
__gita_get_context() {
local -a context
context=(
"auto"
"none"
)
_describe -t context 'gita context' context
__gita_get_groups
}
__gita_get_infos() {
local -a all_infos infos_in_used infos_unused
all_infos=($(_call_program commands gita info ll | cut -d ":" -f2))
infos_in_used=($(echo ${all_infos[1]} | tr ',' ' '))
infos_unused=($(echo ${all_infos[2]} | tr ',' ' '))
_describe -t infos_used 'gita infos in used' infos_in_used
_describe -t infos_unused 'gita infos unused' infos_unused
}
__gita_get_groups() {
local -a groups
groups=($(_call_program commands gita group ls))
_describe -t groups 'gita groups' groups
}
__gita_commands() {
local -a commands
commands=(
'add:Add repo(s)'
'rm:remove repo(s)'
'freeze:Print all repo information'
'clone:Clone repos'
'rename:Rename a repo'
'flags:Git flags configuration'
'color:Color configuration'
'info:Information setting'
'll:Display summary of all repos'
'context:Set context'
'ls:Show repo(s) or repo path'
'group:Group repos'
'super:Run any git command/alias'
'shell:Run any shell command'
'clear:Removes all groups and repositories'
)
_describe -t commands 'gita sub-commands' commands
}
# FUNCTION: _gita_add [[[
_gita_add() {
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]' \
'(-n --dry-run)'{-n,--dry-run}'[dry run]' \
'(-g --group)'{-g=,--group=}'[add repo(s) to the specified group]:Gita groups:__gita_get_groups' \
'(-s --skip-modules)'{-s,--skip-modules}'[skip submodule repo(s)]' \
'(-r --recursive)'{-r,--recursive}'[recursively add repo(s) in the given path(s)]' \
'(-a --auto-group)'{-a,--auto-group}'[recursively add repo(s) in the given path(s) and create hierarchical groups based on folder structure]' \
'(-b --bare)'{-b,--bare}'[add bare repo(s)]' \
"(-h --help -)*:Directories:_directories"
ret=0
}
#]]]
# FUNCTION: _gita_rm [[[
_gita_rm() {
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]' \
"(-h --help -)*:gita repositories:__gita_get_repos" &&
ret=0
}
#]]]
# FUNCTION: _gita_freeze [[[
_gita_freeze() {
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]' \
'(-g --group)'{-g=,--group=}'[freeze repos in the specified group]:Gita groups:__gita_get_groups' &&
ret=0
}
#]]]
# FUNCTION: _gita_clone [[[
_gita_clone() {
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]' \
'(-C --directory)'{-C=,--directory=}'[ Change to DIRECTORY before doing anything]:Directories:_directories' \
'(-p --preserve-path)'{-p,--preserve-path}'[clone repo(s) in their original paths]' \
'(-n --dry-run)'{-n,--dry-run}'[dry run]' \
'(-g --group)'{-g=,--group=}'[If set, add repo to the specified group after cloning, otherwise add to gita without group]:Gita groups:__gita_get_groups' \
'(-f --from-file)'{-f=,--from-file=}'[ If set, clone repos in a config file rendered from `gita freeze`]:File:_path_files' &&
ret=0
}
#]]]
# FUNCTION: _gita_rename [[[
_gita_rename() {
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]' \
"(-h --help -):Gita repositories:__gita_get_repos" &&
ret=0
}
#]]]
# FUNCTION: _gita_flags_commands[[[
_gita_flags_commands() {
local -a subcommands
subcommands=(
'll:Display repos with custom flags'
'set:Set flags for repo'
)
_describe -t subcommands 'gita flag sub-commands' subcommands
}
#]]]
# FUNCTION: _gita_flags_ll [[[
_gita_flags_ll() {
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]' &&
ret=0
}
#]]]
# FUNCTION: _gita_flags_set [[[
_gita_flags_set() {
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]' \
"(-h --help -):Gita repositories:__gita_get_repos" &&
ret=0
}
#]]]
# FUNCTION: _gita_flags[[[
_gita_flags() {
local curcontext="$curcontext" state state_descr line expl
local tmp ret=1
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]'
_arguments -C \
"1: :->cmds" \
"*::arg:->args"
case "$state" in
cmds)
_gita_flags_commands && return 0
;;
args)
local cmd="${line[1]}"
curcontext="${curcontext%:*}-${cmd}:${curcontext##*:}"
local completion_func="_gita_flags_${cmd//-/_}"
_call_function ret "${completion_func}" && return ret
_message "a completion function is not defined for command or alias: ${cmd}"
return 1
;;
esac
}
#]]]
# FUNCTION: _gita_color_commands[[[
_gita_color_commands() {
local -a subcommands
subcommands=(
'll:Display available colors and the current branch coloring in the ll sub-command'
'set:Set color for local/remote situation'
'reset:Reset color scheme'
)
_describe -t subcommands 'gita color sub-commands' subcommands
}
#]]]
# FUNCTION: _gita_color_ll [[[
_gita_color_ll() {
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]' &&
ret=0
}
#]]]
# FUNCTION: _gita_color_set [[[
_gita_color_set() {
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]' &&
ret=0
}
#]]]
# FUNCTION: _gita_color_reset [[[
_gita_color_reset() {
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]' &&
ret=0
}
#]]]
# FUNCTION: _gita_color[[[
_gita_color() {
local curcontext="$curcontext" state state_descr line expl
local tmp ret=1
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]'
_arguments -C \
"1: :->cmds" \
"*::arg:->args"
case "$state" in
cmds)
_gita_color_commands && return 0
;;
args)
local cmd="${line[1]}"
curcontext="${curcontext%:*}-${cmd}:${curcontext##*:}"
local completion_func="_gita_color_${cmd//-/_}"
_call_function ret "${completion_func}" && return ret
_message "a completion function is not defined for command or alias: ${cmd}"
return 1
;;
esac
}
#]]]
# FUNCTION: _gita_info_commands[[[
_gita_info_commands() {
local -a subcommands
subcommands=(
'll:Show used and unused information items of the ll sub-command'
'add:Enable information item'
'rm:Disable information item'
)
_describe -t subcommands 'gita info sub-commands' subcommands
}
#]]]
# FUNCTION: _gita_info_ll [[[
_gita_info_ll() {
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]' &&
ret=0
}
#]]]
# FUNCTION: _gita_info_add [[[
_gita_info_add() {
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]' \
"(-h --help -):Gita infos:__gita_get_infos" &&
ret=0
}
#]]]
# FUNCTION: _gita_info_rm [[[
_gita_info_rm() {
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]' \
"(-h --help -):Gita infos:__gita_get_infos" &&
ret=0
}
#]]]
# FUNCTION: _gita_info[[[
_gita_info() {
local curcontext="$curcontext" state state_descr line expl
local tmp ret=1
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]'
_arguments -C \
"1: :->cmds" \
"*::arg:->args"
case "$state" in
cmds)
_gita_info_commands && return 0
;;
args)
local cmd="${line[1]}"
curcontext="${curcontext%:*}-${cmd}:${curcontext##*:}"
local completion_func="_gita_info_${cmd//-/_}"
_call_function ret "${completion_func}" && return ret
_message "a completion function is not defined for command or alias: ${cmd}"
return 1
;;
esac
}
#]]]
# FUNCTION: _gita_ll [[[
_gita_ll() {
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]' \
'(-C --no-colors)'{-C,--no-colors}'[Disable coloring on the branch names]' \
'(-g)'-g'[Show repo summaries by group]' \
"(-h --help -):Groups name:__gita_get_groups" &&
ret=0
}
#]]]
# FUNCTION: _gita_context [[[
_gita_context() {
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]' \
"(-h --help -):Gita context:__gita_get_context" &&
ret=0
}
#]]]
# FUNCTION: _gita_ls [[[
_gita_ls() {
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]' \
"(-h --help -):Gita repositories:__gita_get_repos" &&
ret=0
}
#]]]
# FUNCTION: _gita_group_commands[[[
_gita_group_commands() {
local -a subcommands
subcommands=(
'll:List all groups with repos.'
'ls:List all group names'
'add:Add repo(s) to a group'
'rmrepo:remove repo(s) from a group'
'rename:Change group name'
'rm:Remove group(s)'
)
_describe -t subcommands 'gita group sub-commands' subcommands
}
#]]]
# FUNCTION: _gita_group_ll [[[
_gita_group_ll() {
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]' \
"(-h --help -):Groups name:__gita_get_groups" &&
ret=0
}
#]]]
# FUNCTION: _gita_group_ls [[[
_gita_group_ls() {
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]' &&
ret=0
}
#]]]
# FUNCTION: _gita_group_add [[[
_gita_group_add() {
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]' \
'(-n --name)'{-n=,--name=}'[group-name,]:Groups name:__gita_get_groups' \
'(-p --path)'{-p=,--path=}'[group-path]:Group path:_directories' \
"(-h --help -)*:Gita repositories:__gita_get_repos" &&
ret=0
}
#]]]
# FUNCTION: _gita_group_rmrepo [[[
_gita_group_rmrepo() {
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]' \
'(-n --name)'{-n=,--name=}'[group-name,]:Groups name:__gita_get_groups' \
"(-h --help -)*:Gita repositories:__gita_get_repos" &&
ret=0
}
#]]]
# FUNCTION: _gita_group_rename [[[
_gita_group_rename() {
_arguments -A \
'(-h --help -)'{-h,--help}'[show this help message and exit]' &&
ret=0
}
#]]]
# FUNCTION: _gita_group_rm [[[
_gita_group_rm() {
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]' \
"(-h --help -)*:Groups name:__gita_get_groups" &&
ret=0
}
#]]]
# FUNCTION: _gita_group[[[
_gita_group() {
local curcontext="$curcontext" state state_descr line expl
local tmp ret=1
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]'
_arguments -C \
"1: :->cmds" \
"*::arg:->args"
case "$state" in
cmds)
_gita_group_commands && return 0
;;
args)
local cmd="${line[1]}"
curcontext="${curcontext%:*}-${cmd}:${curcontext##*:}"
local completion_func="_gita_group_${cmd//-/_}"
_call_function ret "${completion_func}" && return ret
_message "a completion function is not defined for command or alias: ${cmd}"
return 1
;;
esac
}
#]]]
# FUNCTION: _gita_super [[[
_gita_super() {
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]' \
'(-q --quote-mode)'{-q,--quote-mode}'[use quote mode]' &&
ret=0
}
#]]]
# FUNCTION: _gita_shell [[[
_gita_shell() {
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]' \
'(-q --quote-mode)'{-q,--quote-mode}'[use quote mode]' &&
ret=0
}
#]]]
# FUNCTION: _gita_clear [[[
_gita_clear() {
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]' &&
ret=0
}
#]]]
# FUNCTION: _gita [[[
_gita() {
local curcontext="$curcontext" state state_descr line expl
local tmp ret=1
_arguments -A \
'(-h --help)'{-h,--help}'[show this help message and exit]' \
'(-v --version)'{-v,--version}'[show program'\''s version number and exit]'
_arguments -C \
"1: :->cmds" \
"*::arg:->args"
case "$state" in
cmds)
__gita_commands && return 0
;;
args)
local cmd="${line[1]}"
curcontext="${curcontext%:*}-${cmd}:${curcontext##*:}"
local completion_func="_gita_${cmd//-/_}"
_call_function ret "${completion_func}" && return ret
_message "a completion function is not defined for command or alias: ${cmd}"
return 1
;;
esac
} # ]]]
_gita "$@"
|