Skip to content

Instantly share code, notes, and snippets.

@jwebcat
Forked from lemenkov/gist:1674929
Last active March 25, 2024 18:25
Show Gist options
  • Save jwebcat/5122366 to your computer and use it in GitHub Desktop.
Save jwebcat/5122366 to your computer and use it in GitHub Desktop.
Properly download from github using wget and curl
wget --no-check-certificate --content-disposition https://github.com/joyent/node/tarball/v0.7.1
# --no-check-cerftificate was necessary for me to have wget not puke about https
curl -LJO https://github.com/joyent/node/tarball/v0.7.1
@NHLOCAL
Copy link

NHLOCAL commented Oct 17, 2022

הגעתי לזה דוקא דרך גוגל ועובד מצוין!

@basejumpa
Copy link

I was stuck and your curl line just helped me. Thx!

@cig0
Copy link

cig0 commented Nov 21, 2023

Thx!

@unkn0wncvm1
Copy link

Could You Show how to do it on a self hosted git server?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment