←back to thread

449 points bertman | 1 comments | | HN request time: 0.207s | source
Show context
vmception ◴[] No.29702940[source]
This is one of those github repositories that you just clone and move on.

Don't fork, just clone to your local system. When it gets taken down the forks will disappear, whereas the clones will not. You can also just download a zip file.

https://github.com/widevinedump?tab=repositories

replies(3): >>29703359 #>>29703386 #>>29703653 #
tyingq ◴[] No.29703386[source]

  #!/usr/bin/env bash
  API_URL="https://api.github.com/users/widevinedump/repos"
  for url in $(curl -s $API_URL | jq -r '.[].html_url')
  do
    echo "Cloning: $url"
    git clone $url
  done
replies(3): >>29703800 #>>29704129 #>>29705834 #
1. gavinray ◴[] No.29703800[source]
Thanks