Skip to content
Michal Orzechowski edited this page Jun 28, 2017 · 1 revision

Changelog generation:

curl -s https://api.github.com/orgs/onedata/repos\?per_page\=200 | jq -r '.[] | "\(.name) https://raw.githubusercontent.com/\(.full_name)/\(.default_branch)/CHANGELOG.md"' | while read name url ; do curl $url > $name ; done
Clone this wiki locally