http - How to download git repository without using git -
i learning git following tutorials want git repository practicing same.
but due firewall or , command wouldn't work
$git clone git://git.kernel.org/pub/scm/git/git.git
instead can repo zipped file download or how recursively download url displayed html page directories?
you can do
wget --no-check-certificate -o kernel.zip https://github.com/repo/repo/archive/branch.zip unzip kernel.zip
Comments
Post a Comment