I would like to get some files from a project : I do not need to clone the entire repository : I need only the latest snapshot from the master branch. This is important for me because, my bandwidth is quite low, it takes some time to download everything.
On another S.O. question, I saw that one can use 'git archive' to do so, unfortunately, it seems it does not work with https:
git archive --format=tar --remote=https://github.com/thomaspark/bootswatch.git master | tar tvf -
returns "fatal: Operation not supported by protocol."
This command is working with ssh:// but not with https://
for github, I could download the provided zip file on the web interface, but for other repositories that do not provide it, how can I get a simple snapshot from a git repository https URL ?