this nushell
module lets you list the top 100 contributors of a repository or a list of multiple repositories.
- load the module
> use mod.nu *
- get the five biggest contributors to
nushell/nushell
get-contributors [
'nushell/nushell'
'nushell/nushell.github.io'
'nushell/nu_scripts'
]
| where nushell/nushell > 0
| select author nushell/nushell
| first 5
| transpose -r
| into record
will give
╭──────────────┬──────╮
│ jntrnr │ 1386 │
│ fdncred │ 631 │
│ andrasio │ 387 │
│ elferherrera │ 230 │
│ kubouch │ 220 │
╰──────────────┴──────╯