What happens when the repository owner has not prepared a zip file, and you just want a download to use yourself?
There is an answer and you don’t need to go though that horrid process to download software, install and register keys and whatnot on GitHub, etc.!
To simply download a repository as a zip file: add the extra path ‘/zipball/master/’ to the end of the repository URL and voila, it gives you a zip file of the whole lot.
ex: https://github.com/liveservices/LiveSDK-for-Windows
=> https://github.com/liveservices/LiveSDK-for-Windows/zipball/master
Solution based on http://stackoverflow.com/a/7048489