Skip to content

Instantly share code, notes, and snippets.

@kayoch1n
Forked from dingzeyuli/check_github_repo_size
Created January 26, 2021 15:32
Show Gist options
  • Save kayoch1n/452b6258f88fafcebe184ea5e894aecb to your computer and use it in GitHub Desktop.
Save kayoch1n/452b6258f88fafcebe184ea5e894aecb to your computer and use it in GitHub Desktop.
Check the size of a github repo before downloading
# http://webapps.stackexchange.com/questions/39587/view-estimated-size-of-github-repository-before-cloning
# tested on macOS
echo https://github.com/torvalds/linux.git | perl -ne 'print $1 if m!([^/]+/[^/]+?)(?:\.git)?$!' | xargs -I{} curl -s -k https://api.github.com/repos/'{}' | grep size
# output:
# "size": 1746294,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment