You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In daily use, it is usually so that one would like to pull all repos from all GH organisations in one go. That is not possible now. We thus need a parameter for gut pull to do that, tentatively named --all-orgs.
The new parameter could also take a value, one of:
comma-separated lists of orgs to pull from
regex matching org names
Perhaps the regex variant sits better with the overall design of gut, and would also require less typing in most cases.
The actual pulling should happen as now, just with all matching repos in all orgs at the same time (ie as parallel threads). When done, gut should print one report for each org (the same as now, including any errors detected), and a summary report at the end, something like:
Thanks for the thoughts!
Here is my alias:
```sh
$ alias gutalle
alias gutalle='for i in apertium borealium divvungiellatekno divvun giellatekno giellalt ; do gut pull -o $i -r . ; done'
```
And yes, such a command, with its nice final summary, would be nice.
Trond
In daily use, it is usually so that one would like to pull all repos from all GH organisations in one go. That is not possible now. We thus need a parameter for
gut pull
to do that, tentatively named--all-orgs
.The new parameter could also take a value, one of:
Perhaps the regex variant sits better with the overall design of
gut
, and would also require less typing in most cases.The actual pulling should happen as now, just with all matching repos in all orgs at the same time (ie as parallel threads). When done,
gut
should print one report for each org (the same as now, including any errors detected), and a summary report at the end, something like:where:
This should be faster and more generic than a
for
loop, like what @Trondtr has written for personal use.The text was updated successfully, but these errors were encountered: