-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbashly.yml
More file actions
445 lines (337 loc) · 9.1 KB
/
Copy pathbashly.yml
File metadata and controls
445 lines (337 loc) · 9.1 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
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
name: rush
help: Personal package manager.
version: 1.0.1
help_header_override: print_logo
completions: [$(rush list -s -a)]
x_mandoc_authors: Danny Ben Shitrit <https://github.com/dannyben>
x_mandoc_footer: |-
# SOURCE CODE
https://github.com/dannyben/rush
# ISSUE TRACKER
https://github.com/dannyben/rush/issues
environment_variables:
- name: rush_config
help: |-
Location of the rush config file.
Default: ~/rush.ini
- name: rush_root
help: |-
Location of the default base directory for cloning repositories.
Default: ~/rush-repos
commands:
- name: add
alias: a
group: Repository
help: |-
Register a local repository.
This command adds the specified path to the configuration file.
args:
- name: repo
required: true
help: Repository name.
- name: path
required: true
help: Path to the repository.
completions: [<directory>]
examples:
- rush add default ~/rush-repos/default
- name: remove
alias: r
group: Repository
help: |-
Unregister a local repository.
This command removes the specified path to the configuration file.
args:
- name: repo
required: true
help: Repository name.
flags:
- long: --purge
short: -p
help: Also remove the local repository's directory.
examples:
- rush remove bobby
- rush remove bobby --purge
- name: clone
group: Git
dependencies: [git]
help: |-
Clone a GitHub package repository.
This command clones the repository and registers it in the configuration file.
args:
- name: github_user
required: true
help: &github_user_help |-
Github user.
This user is expected to have a repository named `rush-repo`.
If you need to use a different name, use the `user/repo` syntax.
- name: path
completions: [<directory>]
help: |-
Local path to clone the repository into.
Default: ~/rush-repos/<github_user>/<github_repo>
flags:
- long: --ssh
short: -s
help: Clone using SSH instead of HTTPS.
- long: --default
short: -d
help: Set this as the default repository (same as `--name default`).
- long: --name
short: -n
arg: name
help: |-
Name to use in the config file.
Default: GitHub user
- long: --shallow
short: -w
help: Perform a shallow clone, instead of the default full clone.
- long: --ignore
short: -i
help: Ignore (do not clone) if a repository with this name exists.
examples:
- rush clone bobby
- rush clone bobby --default
- rush clone bobby/bobs-repo ./repos/bobby --ssh
- rush clone bobby --name sample --ignore
- name: pull
alias: [p, download, update]
group: Git
dependencies: [git]
help: Git pull one or all repositories.
args:
- name: repo
help: Repository name.
- name: push
alias: upload
group: Git
dependencies: [git]
help: Git push one or all repositories.
args:
- name: repo
help: Repository name.
default: default
flags:
- long: --all
short: -a
help: Push all repositories.
- long: --message
short: -m
arg: text
help: Commit message.
default: automatic commit
- name: config
alias: c
group: Config
help: Show or edit the configuration file.
flags:
- long: --edit
short: -e
help: Open the configuration file for editing.
- name: default
group: Config
help: |-
Set a default repository.
This command adds (or updates) a repository named `default` to the configuration file, and copies the path from the provided repo.
args:
- name: repo
required: true
help: Repository name.
examples:
- rush default sample
- name: get
alias: g
group: Package
help: |-
Install a package.
This command runs the main script in the package directory.
This is the default command, which means that running `rush package` is the same as running `rush get package`.
default: true
args:
- name: package
required: true
completions: [$(rush list -s -a)]
help: &package_help |-
Package name.
This can either be the package name without the repository name (in this case, the default repository will be used) or in the form of `repo:package`.
flags:
- long: --clone
short: -c
help: |-
Clone the repository if it is not found locally.
This flag will look for a GitHub user with the same name as the repository, and attempt to clone their rush-repo repository.
- long: --force
short: -f
help: |-
Force installation.
This may mean different things in different packages.
- long: --verbose
short: -v
help: Show additional details if possible.
examples:
- rush ruby
- rush get ruby --force
- rush get centos:ruby
- name: undo
alias: u
group: Package
help: |-
Uninstall a package.
This command runs the undo script in the package directory.
args:
- name: package
required: true
completions: [$(rush list -s -a)]
help: *package_help
flags:
- long: --verbose
short: -v
help: Show additional details if possible.
examples:
- rush undo ruby
- rush undo centos:ruby
- name: snatch
group: Package
help: |-
Install a package from a remote repo.
This command is a shortcut to running clone followed by get.
It will clone the repository to a temporary directory and run the main package script.
args:
- name: github_user
required: true
help: *github_user_help
- name: package
required: true
help: Package name.
flags:
- long: --force
short: -f
help: |-
Force installation.
This may mean different things in different packages.
- long: --verbose
short: -v
help: Show additional details if possible.
- long: --undo
short: -u
help: Run the undo script instead of the main script.
examples:
- rush snatch james python
- rush snatch james python --undo
- rush snatch james/other-rush-repo python
- name: copy
group: Package
help: Copy a package between local repositories.
args:
- name: source_package
required: true
completions: [$(rush list -s -a)]
help: |-
Source package name.
This can either be the package name without the repository name (in this case, the default repository will be used) or in the form of `repo:package`.
- name: target_package
help: |-
Target package name.
This can either be the package name without the repository name (in this case, the default repository will be used) or in the form of `repo:package`.
If left empty, the package will be copied with the same name to the default repository.
flags:
- long: --force
short: -f
help: Copy the package even if it already exists in the target repository.
examples:
- rush copy james:python
- rush copy james:python python3
- rush copy james:python bobby:python3 --force
- name: info
alias: i
group: Package
help: |-
Show information about a package.
This command shows the info file from the package directory.
args:
- name: package
required: true
completions: [$(rush list -s -a)]
help: *package_help
examples:
- rush info ruby
- rush info centos:ruby
- name: list
alias: [l, ls]
group: Package
help: Show packages in one or all repositories.
args:
- name: repo_or_package
help: |-
Repository name or package name.
Leave blank to show all packages in all repositories.
Provide a repository name to show only packages in this repository.
Provide a package name (may be in the form of `repo:package`) to show nested packages.
flags:
- long: --simple
short: -s
help: Show only package names.
- long: --all
short: -a
help: Show nested packages as well.
examples:
- rush list
- rush list personal:apps
- rush list personal
- rush list apps
- rush list apps --simple --all
- name: menu
group: Package
dependencies: [fzf]
help: Select a package from an interactive menu.
args:
- name: repo_or_package
help: |-
Repository name or package name.
Leave blank to show all packages in all repositories.
Provide a repository name to show only packages in this repository.
Provide a package name (may be in the form of `repo:package`) to show nested packages.
flags:
- long: --install
short: -i
help: Install the selected package instead of showing its info.
examples:
- rush menu
- rush menu --install
- rush menu personal
- name: search
alias: s
group: Package
help: Search in package names and info files.
args:
- name: text
help: Text to search for.
required: true
- name: edit
alias: e
group: Package
help: Edit package files.
args:
- name: package
required: true
completions: [$(rush list -s -a)]
help: *package_help
- name: file
help: File to edit.
default: main
- name: show
group: Package
help: Show package files.
args:
- name: package
required: true
completions: [$(rush list -s -a)]
help: *package_help
- name: file
help: File to show (show all if not specified).
examples:
- rush show docker
- rush show docker main
- name: completions
group: Internal
help: Generate bash completions.